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() {