diff --git a/app/vision/page.tsx b/app/vision/page.tsx
index 1aafa4a..6111bb6 100644
--- a/app/vision/page.tsx
+++ b/app/vision/page.tsx
@@ -745,29 +745,8 @@ export default function VisionPage() {
// Show Jitsi iframe if conference is selected
if (selectedConference && jitsiUrl) {
- // Hide the main navigation bar when in conference mode
- useEffect(() => {
- const navBar = document.querySelector('div[class*="fixed"][class*="top-0"][class*="z-50"]');
- if (navBar) {
- (navBar as HTMLElement).style.display = 'none';
- }
- return () => {
- if (navBar) {
- (navBar as HTMLElement).style.display = '';
- }
- };
- }, []);
-
return (
- <>
-
-
+
{/* Header with back button */}
- >
);
}