diff --git a/src/routes/+layout.server.ts b/src/routes/+layout.server.ts index 17c002ef..4ba0a5da 100644 --- a/src/routes/+layout.server.ts +++ b/src/routes/+layout.server.ts @@ -21,6 +21,15 @@ export const load: LayoutServerLoad = async ({ locals }) => { }) } + // Debug logging for Navigation props + console.log('[+layout.server] Navigation props:', { + hasAccount: !!account, + account, + hasCurrentUser: !!currentUser, + currentUser, + isAuthenticated + }) + return { isAuthenticated, account,