Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/core/supabase-js/src/SupabaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export default class SupabaseClient<
{ PostgrestVersion: '12' }
: SchemaNameOrClientOptions extends { PostgrestVersion: string }
? SchemaNameOrClientOptions
: never,
: // otherwise default to 12
{ PostgrestVersion: '12' },
> {
/**
* Supabase Auth allows you to create and manage user sessions for access to data that is secured by access policies.
Expand Down
Loading