Fix missing mapZoom state variable in add property page
All checks were successful
Build frontend / build (push) Successful in 37s

This commit is contained in:
Claw AI
2026-03-28 18:12:41 +00:00
parent d94b32a670
commit 6df7548611

View File

@ -124,6 +124,7 @@ export default function AddPropertyPage() {
const [selectedLocation, setSelectedLocation] = useState(null);
const [mapCenter, setMapCenter] = useState([33.5138, 36.2765]);
const [mapZoom, setMapZoom] = useState(13);
const [searchQuery, setSearchQuery] = useState('');
const [mapLoaded, setMapLoaded] = useState(false);