diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 5129d2c..35bfa02 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -1,11 +1,11 @@ import React, { useState, useEffect } from 'react'; import MapComponent from './components/MapComponent'; -import { Navigation, Compass, Activity, BarChart3, MapPin, Eye, Shield, Gauge, Clock } from 'lucide-react'; +import { Navigation, Compass, Activity, BarChart3, MapPin, Eye, Shield, Gauge, Clock, AlertTriangle } from 'lucide-react'; 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 || localStorage.getItem('intaleq_api_key') || 'zP9vL5mK2nQ8xR7jT4wS1yB6hG3fV0cX'; +const DEFAULT_API_KEY = (import.meta as any).env.VITE_API_KEY || localStorage.getItem('intaleq_api_key') || ''; function App() { const [map, setMap] = useState(null);