@comergehq/studio 0.1.36 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/core/services/supabase/client.ts +2 -0
package/dist/index.mjs
CHANGED
|
@@ -700,6 +700,7 @@ publicApi.interceptors.request.use((config) => {
|
|
|
700
700
|
|
|
701
701
|
// src/core/services/supabase/client.ts
|
|
702
702
|
import { createClient } from "@supabase/supabase-js";
|
|
703
|
+
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
703
704
|
var clientSingleton = null;
|
|
704
705
|
var injectedClient = null;
|
|
705
706
|
var hasInjectedClient = false;
|
|
@@ -726,6 +727,7 @@ function getSupabaseClient() {
|
|
|
726
727
|
}
|
|
727
728
|
clientSingleton = createClient(runtimeConfig.url, runtimeConfig.anonKey, {
|
|
728
729
|
auth: {
|
|
730
|
+
storage: AsyncStorage,
|
|
729
731
|
autoRefreshToken: true,
|
|
730
732
|
persistSession: true,
|
|
731
733
|
detectSessionInUrl: false
|