style: run prettier on entire codebase

This commit is contained in:
BOHA
2026-03-24 19:59:14 +01:00
parent 872be42107
commit 3c167cf5c4
148 changed files with 26740 additions and 13990 deletions

View File

@@ -1,7 +1,7 @@
import { z } from 'zod';
import { z } from "zod";
export const CreateCustomerSchema = z.object({
name: z.string().min(1, 'Název zákazníka je povinný'),
name: z.string().min(1, "Název zákazníka je povinný"),
street: z.string().nullish(),
city: z.string().nullish(),
postal_code: z.string().nullish(),