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
@@ -25,7 +25,7 @@
let services = $state<CustomService[]>([]);
let total = $state(0);
let page = $state(1);
let perPage = $state(10);
const perPage = $state(10);
let searchQuery = $state('');
let loading = $state(true);
let creating = $state(false);
@@ -95,7 +95,7 @@
serviceErrors.minimum_age_required = validateMinimumAge(newService.minimum_age_required);
}
let isFormValid = $derived(
const isFormValid = $derived(
(newService.name ?? '').trim() !== '' &&
!serviceErrors.name &&
!serviceErrors.price &&