Skip to content

Commit

Permalink
refactor: address pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
miles-grant-ibigroup committed Feb 15, 2024
1 parent 9b4279e commit 52cb948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vehicle-rental-overlay/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const VehicleRentalOverlay = ({
visible
}: Props): JSX.Element => {
const { current: map } = useMap();
const [zoom, setZoom] = useState(0);
const [zoom, setZoom] = useState(map?.getZoom());

const layerId = `rental-vehicles-${id}`;
const [clickedVehicle, setClickedVehicle] = useState(null);
Expand Down

0 comments on commit 52cb948

Please sign in to comment.