style: fix prettier formatting in 3 files
Lint & Vuln Scan / Go vulnerabilities (push) Successful in 23s
Lint & Vuln Scan / Frontend lint & types (push) Failing after 1m6s

This commit is contained in:
2026-06-25 17:28:42 +01:00
parent 74a24c3ef1
commit a5812018d8
3 changed files with 4 additions and 4 deletions
@@ -148,7 +148,7 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
function toggleCustomForm(show: boolean) { function toggleCustomForm(show: boolean) {
showCustomCreateForm = show; showCustomCreateForm = show;
if (show) { if (show) {
newCustomService = { newCustomService = {
@@ -156,7 +156,7 @@
name: group.name, name: group.name,
description: group.description, description: group.description,
weekStarts: group.weekStarts || [], weekStarts: group.weekStarts || [],
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
hours: hours:
(group.hours as any[])?.map( (group.hours as any[])?.map(
(h: { (h: {
+2 -2
View File
@@ -733,13 +733,13 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
// Phone validation (UK format) // Phone validation (UK format)
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
function validatePhone(phone: string): boolean { function validatePhone(phone: string): boolean {
return isValidUKPhone(phone); return isValidUKPhone(phone);
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
} }
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
function formatPhoneInput(value: string): string { function formatPhoneInput(value: string): string {
return formatPhoneDisplay(value); return formatPhoneDisplay(value);
} }