From fc0f8ba08467109bb7984c92108e799fe1689881 Mon Sep 17 00:00:00 2001 From: Viet Nguyen <3805254+vnugent@users.noreply.github.com> Date: Tue, 4 Jun 2024 03:09:15 -0700 Subject: [PATCH] fix: build break due to outdated code (#1142) --- src/components/maps/CoordinatePickerMap.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/maps/CoordinatePickerMap.tsx b/src/components/maps/CoordinatePickerMap.tsx index 35b00004a..bc9b3875e 100644 --- a/src/components/maps/CoordinatePickerMap.tsx +++ b/src/components/maps/CoordinatePickerMap.tsx @@ -34,7 +34,7 @@ export const CoordinatePickerMap: React.FC = ({ }) => { const [selectedCoord, setSelectedCoord] = useState({ lng: 0, lat: 0 }) const [cursor, setCursor] = useState('default') - const [mapStyle, setMapStyle] = useState(MAP_STYLES.standard.style) + const [mapStyle, setMapStyle] = useState(MAP_STYLES.light.style) const [mapInstance, setMapInstance] = useState(null) const [popupOpen, setPopupOpen] = useState(false) const initialZoom = 14