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
@@ -36,9 +36,9 @@
is_active: true,
minimum_age_required: 0
});
let editingService = $state<Service | null>(null);
const editingService = $state<Service | null>(null);
let servicesLoading = $state(true);
let servicesUpdating = $state<Record<string, boolean>>({});
const servicesUpdating = $state<Record<string, boolean>>({});
let showServiceModal = $state(false);
let creatingService = $state(false);
let serviceErrors = $state<Record<string, string>>({});
@@ -129,7 +129,7 @@
);
}
let isFormValid = $derived(
const isFormValid = $derived(
newService.name !== '' &&
!serviceErrors.name &&
!serviceErrors.price &&