Skip to content

Commit 8fe7215

Browse files
authored
fix: bump gotrue-js/next (#495)
1 parent 5c3fc3b commit 8fe7215

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@supabase/functions-js": "^1.3.3",
41-
"@supabase/gotrue-js": "^1.23.0-next.12",
41+
"@supabase/gotrue-js": "^1.23.0-next.14",
4242
"@supabase/postgrest-js": "^1.0.0-next.2",
4343
"@supabase/realtime-js": "^1.8.0-next.13",
4444
"@supabase/storage-js": "^1.8.0-next.3",

src/SupabaseClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export default class SupabaseClient<
261261
autoRefreshToken,
262262
persistSession,
263263
detectSessionInUrl,
264-
localStorage,
264+
storage,
265265
cookieOptions,
266266
storageKey,
267267
}: SupabaseAuthClientOptions,
@@ -279,7 +279,7 @@ export default class SupabaseClient<
279279
autoRefreshToken,
280280
persistSession,
281281
detectSessionInUrl,
282-
localStorage,
282+
storage,
283283
fetch,
284284
cookieOptions,
285285
})

src/lib/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export type SupabaseClientOptions<SchemaName> = {
3535
/**
3636
* A storage provider. Used to store the logged in session.
3737
*/
38-
localStorage?: SupabaseAuthClientOptions['localStorage']
38+
storage?: SupabaseAuthClientOptions['storage']
3939
/**
4040
* Options passed to the gotrue-js instance
4141
*/

0 commit comments

Comments
 (0)