diff --git a/src/integrations/supabase/client.ts b/src/integrations/supabase/client.ts index acec11a8..6c7e9886 100644 --- a/src/integrations/supabase/client.ts +++ b/src/integrations/supabase/client.ts @@ -1,11 +1,12 @@ // Supabase client configuration with project credentials. // Note: The anon key is a publishable key and safe to expose in client-side code. -import { createClient } from '@supabase/supabase-js'; -import type { Database } from './types'; -import { authStorage } from '@/lib/authStorage'; +import { createClient } from "@supabase/supabase-js"; +import type { Database } from "./types"; +import { authStorage } from "@/lib/authStorage"; -const SUPABASE_URL = "https://ydvtmnrszybqnbcqbdcy.supabase.co"; -const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InlkdnRtbnJzenlicW5iY3FiZGN5Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTgzMjYzNTYsImV4cCI6MjA3MzkwMjM1Nn0.DM3oyapd_omP5ZzIlrT0H9qBsiQBxBRgw2tYuqgXKX4"; +const SUPABASE_URL = "https://api.thrillwiki.com"; +const SUPABASE_PUBLISHABLE_KEY = + "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InlkdnRtbnJzenlicW5iY3FiZGN5Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTgzMjYzNTYsImV4cCI6MjA3MzkwMjM1Nn0.DM3oyapd_omP5ZzIlrT0H9qBsiQBxBRgw2tYuqgXKX4"; // Import the supabase client like this: // import { supabase } from "@/integrations/supabase/client"; @@ -15,5 +16,5 @@ export const supabase = createClient(SUPABASE_URL, SUPABASE_PUBLISHABL storage: authStorage, persistSession: true, autoRefreshToken: true, - } -}); \ No newline at end of file + }, +});