Skip to content

Commit 10ce3b6

Browse files
docs: Fix missing export in Expo React Native docs (supabase#45800)
1 parent 12e08dc commit 10ce3b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/docs/content/guides/getting-started/tutorials/with-expo-react-native.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ These variables are safe to expose in your Expo app since Supabase has
141141
const supabaseUrl = YOUR_REACT_NATIVE_SUPABASE_URL
142142
const supabasePublishableKey = YOUR_REACT_NATIVE_SUPABASE_PUBLISHABLE_KEY
143143

144-
const supabase = createClient(supabaseUrl, supabasePublishableKey, {
144+
export const supabase = createClient(supabaseUrl, supabasePublishableKey, {
145145
auth: {
146146
storage: new LargeSecureStore(),
147147
autoRefreshToken: true,

0 commit comments

Comments
 (0)