@@ -67,7 +67,7 @@
});
async function getDistance() {
try {
- let response = await fetch("/d");
+ let response = await fetch("/d", {cache: "no-store"});
let data = await response.json();
return data.distance;
} catch {