fix: change "No work location saved." error message

This commit is contained in:
Cfp
2025-06-22 15:29:22 +02:00
parent a3919ead45
commit 9a78c534d7

View File

@ -30,7 +30,7 @@
<Button variant="secondary" class="flex-1" onclick={() => {
const work = localStorage.getItem("saved.work");
if(!work) {
alert("No home location saved.");
alert("No work location saved.");
return;
}
const {lat, lon} = JSON.parse(work);