Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sinejespersen committed Dec 18, 2024
1 parent f55ba3d commit 2175871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/points/DistanceComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function DistanceComponent({ data: { id = null, latitude, longitude, proximityTo
const { lat, long } = useContext(LatLongContext);
const distance = useMemo(
() => getDistanceBetweenCoordinates(lat, long, latitude, longitude),
[lat, long, latitude, longitude]
[lat, long, latitude, longitude],
);
function unlockThisPoint() {
setListOfUnlocked([...listOfUnlocked, ...[id]]);
Expand Down

0 comments on commit 2175871

Please sign in to comment.