Skip to content

Commit

Permalink
Fix builds / add envs
Browse files Browse the repository at this point in the history
  • Loading branch information
arctixdev committed Dec 20, 2024
1 parent 5957e97 commit 5cece5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,3 @@ export default function App() {
</View>
);
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});
4 changes: 2 additions & 2 deletions lib/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import "react-native-url-polyfill/auto";
import AsyncStorage from "@react-native-async-storage/async-storage";
import { createClient } from "@supabase/supabase-js";

const supabaseUrl = YOUR_REACT_NATIVE_SUPABASE_URL;
const supabaseAnonKey = YOUR_REACT_NATIVE_SUPABASE_ANON_KEY;
const supabaseUrl = process.env.EXPO_PUBLIC_SUPABASE_URL || "";
const supabaseAnonKey = process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY || "";

export const supabase = createClient(supabaseUrl, supabaseAnonKey, {
auth: {
Expand Down

0 comments on commit 5cece5a

Please sign in to comment.