We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74ce9e3 commit e537ee7Copy full SHA for e537ee7
src/SupabaseClient.ts
@@ -97,9 +97,9 @@ export default class SupabaseClient<
97
this.headers = { ...DEFAULT_HEADERS, ...options?.headers }
98
this.shouldThrowOnError = settings.shouldThrowOnError || false
99
100
+ this.auth = this._initSupabaseAuthClient(settings.auth || {}, this.headers, settings.fetch)
101
this.fetch = fetchWithAuth(supabaseKey, this._getAccessToken.bind(this), settings.fetch)
102
- this.auth = this._initSupabaseAuthClient(settings.auth || {}, this.headers, this.fetch)
103
this.realtime = this._initRealtimeClient({ headers: this.headers, ...settings.realtime })
104
this.rest = new PostgrestClient(`${_supabaseUrl}/rest/v1`, {
105
headers: this.headers,
0 commit comments