Use default options when calling supabase createClient (#117)

This commit is contained in:
Brian Hackett 2025-05-07 12:34:22 -10:00 committed by GitHub
parent d82183b9cd
commit aaf78339b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,12 +133,7 @@ export function getSupabase() {
}
// Create and cache the Supabase client
supabaseClientInstance = createClient<Database>(supabaseUrl, supabaseAnonKey, {
auth: {
persistSession: true,
autoRefreshToken: true,
},
});
supabaseClientInstance = createClient<Database>(supabaseUrl, supabaseAnonKey);
return supabaseClientInstance;
}