From 039a3e5a26a89b121b42a99b0038c9e65c24e989 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 4 Jul 2026 07:17:07 +0000 Subject: [PATCH] =?UTF-8?q?A:=20Remove=20address=20fields=20from=20Company?= =?UTF-8?q?Form=20=E2=80=94=20addresses=20now=20via=20AddressList=20in=20d?= =?UTF-8?q?etail=20view?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/CompanyForm.tsx | 51 ------------------------------ 1 file changed, 51 deletions(-) diff --git a/frontend/src/pages/CompanyForm.tsx b/frontend/src/pages/CompanyForm.tsx index 8f4c382..7d69dce 100644 --- a/frontend/src/pages/CompanyForm.tsx +++ b/frontend/src/pages/CompanyForm.tsx @@ -20,11 +20,6 @@ const companySchema = z.object({ email: z.string().email('Ungültige E-Mail-Adresse').max(255).optional().or(z.literal('')), website: z.string().max(500, 'Maximal 500 Zeichen').optional().or(z.literal('')), description: z.string().optional().or(z.literal('')), - address_street: z.string().max(255).optional().or(z.literal('')), - address_city: z.string().max(100).optional().or(z.literal('')), - address_zip: z.string().max(20).optional().or(z.literal('')), - address_country: z.string().max(2).optional().or(z.literal('')), - address_state: z.string().max(100).optional().or(z.literal('')), }); type CompanyFormValues = z.infer; @@ -55,11 +50,6 @@ export function CompanyFormPage() { email: '', website: '', description: '', - address_street: '', - address_city: '', - address_zip: '', - address_country: '', - address_state: '', }, }); @@ -73,11 +63,6 @@ export function CompanyFormPage() { email: company.email || '', website: company.website || '', description: company.description || '', - address_street: (company as any).address_street || '', - address_city: (company as any).address_city || '', - address_zip: (company as any).address_zip || '', - address_country: (company as any).address_country || '', - address_state: (company as any).address_state || '', }); } }, [company, isEdit, reset]); @@ -190,42 +175,6 @@ export function CompanyFormPage() { )} - -
- - - - - -
-
-