From c2df7410552fbc076e46e4e2313df0874c49053c Mon Sep 17 00:00:00 2001 From: byGalax Date: Thu, 14 May 2026 06:12:50 +0200 Subject: [PATCH] feat(mobile): register /call full-screen modal route --- apps/mobile/app/(app)/_layout.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/apps/mobile/app/(app)/_layout.tsx b/apps/mobile/app/(app)/_layout.tsx index fedb0bd..e3670eb 100644 --- a/apps/mobile/app/(app)/_layout.tsx +++ b/apps/mobile/app/(app)/_layout.tsx @@ -2,13 +2,18 @@ import { Redirect, Stack } from 'expo-router'; import { useAuth } from '../../lib/authContext'; -// Guard for the authenticated route group. While the AuthProvider is -// hydrating from AsyncStorage we render nothing (a brief blank frame) -// rather than flashing the login screen and then snapping into the chat -// list — that's a worse UX than a 200ms blank. export default function AppLayout() { const { session, loading } = useAuth(); if (loading) return null; if (!session) return ; - return ; + return ( + + + + + + ); }