From 9b20068186ba1496a6a65863b3965ed0c7048c71 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Tue, 4 Nov 2025 13:53:52 -0800 Subject: [PATCH] Resolve sign in screen. --- app/_layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/_layout.tsx b/app/_layout.tsx index ff40419..546a679 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -121,10 +121,16 @@ function AuthenticatedLayout() { } function UnauthenticatedLayout() { + const paperTheme = usePaperTheme(); + return ( - - - + + + + + ); }