From 0fde087c3dbb25ace3fe2d6d8e09518d87c91649 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 31 Jan 2026 13:07:18 +0000 Subject: [PATCH] Format the map --- frontend/src/App.tsx | 8 +-- frontend/src/components/Map.tsx | 75 ++++++++++++++++------ frontend/src/components/PropertiesPane.tsx | 10 +-- 3 files changed, 64 insertions(+), 29 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 4f30c11..ed9ec6f 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -66,7 +66,9 @@ export default function App() { const poiAbortControllerRef = useRef(null); // Hexagon properties state - const [selectedHexagon, setSelectedHexagon] = useState<{ h3: string; resolution: number } | null>(null); + const [selectedHexagon, setSelectedHexagon] = useState<{ h3: string; resolution: number } | null>( + null + ); const [properties, setProperties] = useState([]); const [propertiesTotal, setPropertiesTotal] = useState(0); const [propertiesOffset, setPropertiesOffset] = useState(0); @@ -347,9 +349,7 @@ export default function App() {