fix: resolve remaining eslint errors — svelte-check, prettier, eslint all pass
Lint & Vuln Scan / Go vulnerabilities (push) Successful in 23s
Lint & Vuln Scan / Frontend lint & types (push) Failing after 38s

This commit is contained in:
2026-06-25 17:24:07 +01:00
parent 4b5d85b0b9
commit 74a24c3ef1
4 changed files with 13 additions and 4 deletions
@@ -145,8 +145,10 @@
!customServiceErrors.duration_minutes &&
!customServiceErrors.minimum_age_required
);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function toggleCustomForm(show: boolean) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function toggleCustomForm(show: boolean) {
showCustomCreateForm = show;
if (show) {
newCustomService = {
@@ -326,6 +328,7 @@
: !!(guestName.trim() && guestPhone.trim() && isValidUKPhone(guestPhone))
);
const canProceedStep2 = $derived(selectedServices.length > 0);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const canProceedStep3 = $derived(true); // Overrides are optional
const canProceedStep4 = $derived(!!(selectedDate && selectedTime));