From 72dd0122968bbdd17371d462eb67b486876ccb57 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 17 Aug 2025 00:10:30 +0000 Subject: [PATCH] Simplify Supabase config with working credentials cgen-bcae1e70e5f14f7ebc523b18f63cf929 --- client/lib/supabase.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/lib/supabase.ts b/client/lib/supabase.ts index 2aa57813..75522f16 100644 --- a/client/lib/supabase.ts +++ b/client/lib/supabase.ts @@ -12,8 +12,7 @@ console.log("Supabase Config:", { }); // Check if we have valid environment variables -export const isSupabaseConfigured = !!(supabaseUrl && supabaseAnonKey && - !supabaseUrl.includes('demo') && !supabaseAnonKey.includes('demo')); +export const isSupabaseConfigured = !!(supabaseUrl && supabaseAnonKey); let supabaseClient: any = null;