diff --git a/apps/dispatch/app/(auth)/layout.tsx b/apps/dispatch/app/(auth)/layout.tsx index 8b9a6bcb..27c67211 100644 --- a/apps/dispatch/app/(auth)/layout.tsx +++ b/apps/dispatch/app/(auth)/layout.tsx @@ -9,8 +9,7 @@ const AuthLayout: NextPage<
diff --git a/apps/dispatch/app/dispatch/_components/map/AircraftMarker.tsx b/apps/dispatch/app/dispatch/_components/map/AircraftMarker.tsx index 5b4867ee..251e8398 100644 --- a/apps/dispatch/app/dispatch/_components/map/AircraftMarker.tsx +++ b/apps/dispatch/app/dispatch/_components/map/AircraftMarker.tsx @@ -335,7 +335,7 @@ const AircraftMarker = ({ const handleZoom = () => { const zoom = map.getZoom(); - setHideMarker(zoom < 9); + setHideMarker(zoom < 8); handleConflict(); }; diff --git a/apps/dispatch/app/dispatch/_components/map/MissionMarkers.tsx b/apps/dispatch/app/dispatch/_components/map/MissionMarkers.tsx index bb4b9dcc..c24a8cf3 100644 --- a/apps/dispatch/app/dispatch/_components/map/MissionMarkers.tsx +++ b/apps/dispatch/app/dispatch/_components/map/MissionMarkers.tsx @@ -277,7 +277,7 @@ const MissionMarker = ({ mission }: { mission: Mission }) => { const handleZoom = () => { const zoom = map.getZoom(); - setHideMarker(zoom < 9); + setHideMarker(zoom < 8); handleConflict(); }; diff --git a/apps/dispatch/app/dispatch/_components/map/_components/MarkerCluster.tsx b/apps/dispatch/app/dispatch/_components/map/_components/MarkerCluster.tsx index b0da9b0d..144f304f 100644 --- a/apps/dispatch/app/dispatch/_components/map/_components/MarkerCluster.tsx +++ b/apps/dispatch/app/dispatch/_components/map/_components/MarkerCluster.tsx @@ -251,7 +251,7 @@ export const MarkerCluster = () => { }; }); - if (zoom >= 9) { + if (zoom >= 8) { setCluster([]); } else { setCluster(clusterWithAvgPos); diff --git a/apps/dispatch/app/pilot/page.tsx b/apps/dispatch/app/pilot/page.tsx index 486c339a..d5ac4c7f 100644 --- a/apps/dispatch/app/pilot/page.tsx +++ b/apps/dispatch/app/pilot/page.tsx @@ -28,12 +28,16 @@ const DispatchPage = () => {

MRT & DME

- +
+ +
- +
+ +
diff --git a/apps/dispatch/public/bg.png b/apps/dispatch/public/bg.png new file mode 100644 index 00000000..de32b8c6 Binary files /dev/null and b/apps/dispatch/public/bg.png differ diff --git a/apps/hub/app/(app)/page.tsx b/apps/hub/app/(app)/page.tsx index c13328de..18b2eeb8 100644 --- a/apps/hub/app/(app)/page.tsx +++ b/apps/hub/app/(app)/page.tsx @@ -2,7 +2,7 @@ import Logbook from "./_components/Logbook"; import { ArrowRight, NotebookText } from "lucide-react"; import Link from "next/link"; import Events from "./_components/Events"; -import { Stats } from "./_components/Stats"; +import { Stats } from "./_components/stats"; import { Badges } from "./_components/Badges"; /* diff --git a/apps/hub/app/(auth)/layout.tsx b/apps/hub/app/(auth)/layout.tsx index 1c433f99..cda1c592 100644 --- a/apps/hub/app/(auth)/layout.tsx +++ b/apps/hub/app/(auth)/layout.tsx @@ -11,8 +11,7 @@ const AuthLayout: NextPage<