From bf1efd7ca28807884c792b805a5431299b264600 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sat, 5 Oct 2024 09:29:42 +0200 Subject: [PATCH] chore --- app/(auth)/play-video.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/(auth)/play-video.tsx b/app/(auth)/play-video.tsx index 66050da7..09851ef7 100644 --- a/app/(auth)/play-video.tsx +++ b/app/(auth)/play-video.tsx @@ -40,9 +40,9 @@ export default function page() { source={videoSource} style={{ width: "100%", height: "100%" }} resizeMode={ignoreSafeArea ? "cover" : "contain"} - onProgress={handleVideoProgress} - onLoad={(data) => (max.value = secondsToTicks(data.duration))} - onError={handleVideoError} + onProgress={() => {}} + onLoad={(data) => {}} + onError={() => {}} playWhenInactive={true} allowsExternalPlayback={true} playInBackground={true}