style: run prettier
All checks were successful
TrafficCue CI / check (push) Successful in 1m31s
TrafficCue CI / build (push) Successful in 9m49s
TrafficCue CI / build-android (push) Successful in 23m30s

This commit is contained in:
2025-10-03 19:54:14 +02:00
parent de06d09d1c
commit 639b2c1aeb
13 changed files with 108 additions and 65 deletions

View File

@ -185,12 +185,15 @@
<Button
variant="outline"
onclick={() => {
updateStore({ name: "home", type: "location" }, {
lat,
lng,
name: "home",
icon: "home"
})
updateStore(
{ name: "home", type: "location" },
{
lat,
lng,
name: "home",
icon: "home",
},
);
}}
>
<HomeIcon />
@ -199,12 +202,15 @@
<Button
variant="outline"
onclick={() => {
updateStore({ name: "school", type: "location" }, {
lat,
lng,
name: "school",
icon: "school"
})
updateStore(
{ name: "school", type: "location" },
{
lat,
lng,
name: "school",
icon: "school",
},
);
}}
>
<SchoolIcon />
@ -213,12 +219,15 @@
<Button
variant="outline"
onclick={() => {
updateStore({ name: "work", type: "location" }, {
lat,
lng,
name: "work",
icon: "work"
})
updateStore(
{ name: "work", type: "location" },
{
lat,
lng,
name: "work",
icon: "work",
},
);
}}
>
<BriefcaseIcon />