From 5c554e8514e41847aacd5a9f4c491549a255a6f9 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 29 Nov 2025 19:48:40 -0800 Subject: [PATCH] debug: add logging for Navigation props --- src/routes/+layout.server.ts | 9 +++++++++ 1 file changed, 9 insertions(+) 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,