diff --git a/constants/api-key-context.tsx b/constants/api-key-context.tsx index 6cad5b1..b178929 100644 --- a/constants/api-key-context.tsx +++ b/constants/api-key-context.tsx @@ -16,7 +16,7 @@ interface ApiKeyProviderProps { } export function ApiKeyProvider({ children }: ApiKeyProviderProps) { - const [apiKey, setApiKeyState] = useState(process.env.JULES_API_KEY || process.env.EXPO_PUBLIC_JULES_API_KEY || ''); + const [apiKey, setApiKeyState] = useState(''); const [isLoaded, setIsLoaded] = useState(false); // Load API key on mount