Skip to content

Commit

Permalink
chore: fixed type error
Browse files Browse the repository at this point in the history
  • Loading branch information
NoorFatima01 committed May 4, 2024
1 parent d830114 commit c4c2bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/supabase/browser-clients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { createBrowserClient } from '@supabase/ssr';
import { SUPABASE_ANON_KEY, SUPABASE_URL } from '@/constant/env';

export function createSupabaseBrowserClient() {
return createBrowserClient(SUPABASE_URL, SUPABASE_ANON_KEY);
return createBrowserClient(SUPABASE_URL as string, SUPABASE_ANON_KEY);
}

0 comments on commit c4c2bfc

Please sign in to comment.