Skip to content

Commit 2175871

Browse files
author
Sine Jespersen
committed
prettier
1 parent f55ba3d commit 2175871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/points/DistanceComponent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function DistanceComponent({ data: { id = null, latitude, longitude, proximityTo
88
const { lat, long } = useContext(LatLongContext);
99
const distance = useMemo(
1010
() => getDistanceBetweenCoordinates(lat, long, latitude, longitude),
11-
[lat, long, latitude, longitude]
11+
[lat, long, latitude, longitude],
1212
);
1313
function unlockThisPoint() {
1414
setListOfUnlocked([...listOfUnlocked, ...[id]]);

0 commit comments

Comments
 (0)