Skip to content

Commit

Permalink
Linter says we need a semicolon here
Browse files Browse the repository at this point in the history
  • Loading branch information
wmbr authored and wvanderp committed Nov 25, 2023
1 parent 5fba781 commit 6e4ad70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/MapView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function MapView() {
if (webcam === null) {
return null;
}
const rotationAngle = webcam.direction === undefined ? 0 : webcam.direction - 90
const rotationAngle = webcam.direction === undefined ? 0 : webcam.direction - 90;
return (
<Marker key={webcam.osmID} position={[webcam.lat, webcam.lon]} icon={MarkerIcon} rotationAngle={rotationAngle} rotationOrigin={'center center'}>
<Popup>
Expand Down

0 comments on commit 6e4ad70

Please sign in to comment.