Skip to content

Commit

Permalink
fix(park-and-ride-overlay): fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
amy-corson-ibigroup committed Sep 27, 2024
1 parent 9187bed commit bef94b5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions packages/park-and-ride-overlay/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ type Props = {
id?: string;
keyboard?: boolean;
parkAndRideLocations: { name: string; x: number; y: number }[];
setLocation: ({
// eslint-disable-next-line @typescript-eslint/no-shadow
location: Location,
locationType: string,
reverseGeocode: boolean
}) => void;
setLocation: (
l: {
location: Location;
locationType: string;
reverseGeocode: boolean;
} | null
) => void;
};

const ParkAndRideOverlay = (props: Props): JSX.Element => {
Expand Down

0 comments on commit bef94b5

Please sign in to comment.