diff --git a/app/(auth)/play-offline-video.tsx b/app/(auth)/play-offline-video.tsx
index fb54a37d..2c9e88d2 100644
--- a/app/(auth)/play-offline-video.tsx
+++ b/app/(auth)/play-offline-video.tsx
@@ -1,4 +1,5 @@
-import { Controls } from "@/components/video-player/VlcControls";
+import { Controls } from "@/components/video-player/Controls";
+import { VlcControls } from "@/components/video-player/VlcControls";
import { useAndroidNavigationBar } from "@/hooks/useAndroidNavigationBar";
import { useOrientation } from "@/hooks/useOrientation";
import { useOrientationSettings } from "@/hooks/useOrientationSettings";
@@ -199,23 +200,34 @@ export default function page() {
onVideoStateChange={onPlaybackStateChanged}
/>
-
-
+ {videoRef.current && (
+
+ )}
);
}