From 3a6d459ebdc106a5a2f028e4bac2ba9a261279e8 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 6 Sep 2025 20:12:37 +0200 Subject: [PATCH] Skip jwt supabase update --- web/components/auth-context.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/components/auth-context.tsx b/web/components/auth-context.tsx index 37651728..116da28f 100644 --- a/web/components/auth-context.tsx +++ b/web/components/auth-context.tsx @@ -142,7 +142,8 @@ export function AuthProvider(props: { }), ]) // When testing on a mobile device, we'll be pointed at a local ip or ngrok address, so this will fail - if (supabaseJwt) updateSupabaseAuth(supabaseJwt.jwt) + // Skipping for now at it seems to work fine without it + // if (supabaseJwt) updateSupabaseAuth(supabaseJwt.jwt) if (!user || !privateUser) { const deviceToken = ensureDeviceToken()