style: run prettier

This commit is contained in:
2025-09-16 19:27:32 +02:00
parent 13c02fc535
commit 08d3160c93

View File

@ -85,10 +85,10 @@
onMount(() => { onMount(() => {
view.loading = true; view.loading = true;
}) });
</script> </script>
{#await fetchPOI(lat, lng, 20).then(r => { {#await fetchPOI(lat, lng, 20).then((r) => {
view.loading = false; view.loading = false;
return r; return r;
})} })}