From 9e65afae591f7a48fde229c8323b819d63cfefb0 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Fri, 21 Aug 2026 00:01:11 +0300 Subject: [PATCH] fix(web): Add default master API key fallback for web route calculation --- apps/web/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 1172ea0..6c9c21d 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -5,7 +5,7 @@ import { decodePolyline } from './utils/polyline'; import WeatherPanel from './components/WeatherPanel'; import { LineOfSightTool } from './components/LineOfSightTool'; -const DEFAULT_API_KEY = (import.meta as any).env.VITE_API_KEY || ''; +const DEFAULT_API_KEY = (import.meta as any).env.VITE_API_KEY || localStorage.getItem('intaleq_api_key') || 'zP9vL5mK2nQ8xR7jT4wS1yB6hG3fV0cX'; function App() { const [map, setMap] = useState(null);