style: run prettier
This commit is contained in:
@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user