Skip to content

Commit

Permalink
fix: build break due to outdated code (#1142)
Browse files Browse the repository at this point in the history
  • Loading branch information
vnugent committed Jun 4, 2024
1 parent b1f9a2e commit fc0f8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/maps/CoordinatePickerMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const CoordinatePickerMap: React.FC<CoordinatePickerMapProps> = ({
}) => {
const [selectedCoord, setSelectedCoord] = useState({ lng: 0, lat: 0 })
const [cursor, setCursor] = useState<string>('default')
const [mapStyle, setMapStyle] = useState<string>(MAP_STYLES.standard.style)
const [mapStyle, setMapStyle] = useState<string>(MAP_STYLES.light.style)
const [mapInstance, setMapInstance] = useState<MapInstance | null>(null)
const [popupOpen, setPopupOpen] = useState(false)
const initialZoom = 14
Expand Down

0 comments on commit fc0f8ba

Please sign in to comment.