style: fix prefer-const and prettier formatting issues
Backend CI / Tests (push) Failing after 1m41s
Backend CI / Lint & vulns (push) Failing after 2m26s
Backend CI / Race detector (push) Failing after 3m45s

This commit is contained in:
2026-06-25 13:48:03 +01:00
parent e0236144c7
commit 4af2b8dfb4
64 changed files with 234 additions and 229 deletions
@@ -52,7 +52,7 @@
<script lang="ts" generics="T extends MapArcDatum = MapArcDatum">
import { useMap } from '$lib/hooks/use-map.svelte.js';
let {
const {
data,
id: propId,
curvature = 0.2,
@@ -80,7 +80,7 @@
const ARC_HIT_MIN_WIDTH = 12;
const ARC_HIT_PADDING = 6;
let autoId = $state(Math.random().toString(36).slice(2));
const autoId = $state(Math.random().toString(36).slice(2));
const id = $derived(propId ?? autoId);
const sourceId = $derived(`arc-source-${id}`);
const layerId = $derived(`arc-layer-${id}`);