Skip to content

Commit

Permalink
Remove legacy eslint disable
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorotkaya committed Oct 4, 2023
1 parent 68d02e0 commit 3b878b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GoogleMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export default function GoogleMapsComponent({
if (selectedVenueId !== null && selectedVenueId !== properties.venue.id) {
return null;
}
return cluster // eslint-disable-line @typescript-eslint/strict-boolean-expressions
return cluster
? <MarkerF
key={`cluster-${id}`}
onClick={() => handleClusterClick({ id: id as number, lat, lng })}
Expand Down

0 comments on commit 3b878b4

Please sign in to comment.