fix(mobile): add hardcoded production env fallbacks to prevent launch crash

This commit is contained in:
AyrisAI
2026-08-20 02:38:37 +03:00
parent 856347cabd
commit f5eebed0a7
3 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { supabase } from "./supabase";
const API_URL = process.env.EXPO_PUBLIC_API_URL ?? "http://localhost:3001";
const DEFAULT_API_URL = "https://api.menul.io";
const API_URL = process.env.EXPO_PUBLIC_API_URL || DEFAULT_API_URL;
async function authHeaders(): Promise<Record<string, string>> {
const { data } = await supabase.auth.getSession();