From aff9dcb7bd55a2cf15134f8a4f162f1d40c04a7b Mon Sep 17 00:00:00 2001 From: Ida Date: Wed, 29 Apr 2026 18:35:42 +0200 Subject: [PATCH] build errors --- .../AddConnectionWizard/AddConnectionWizard.tsx | 1 - .../FormGeneratorTable/FormGeneratorTable.tsx | 8 -------- 2 files changed, 9 deletions(-) diff --git a/src/components/AddConnectionWizard/AddConnectionWizard.tsx b/src/components/AddConnectionWizard/AddConnectionWizard.tsx index 10fe952..85c9336 100644 --- a/src/components/AddConnectionWizard/AddConnectionWizard.tsx +++ b/src/components/AddConnectionWizard/AddConnectionWizard.tsx @@ -209,7 +209,6 @@ export const AddConnectionWizard: React.FC = ({ onClose(); }; - const STEP_LABELS = ['Anbieter', 'Zustimmung', 'Einstellungen', 'Übersicht'] as const; const visibleSteps = state.knowledgeEnabled ? [0, 1, 2, 3] : [0, 1, 3]; diff --git a/src/components/FormGenerator/FormGeneratorTable/FormGeneratorTable.tsx b/src/components/FormGenerator/FormGeneratorTable/FormGeneratorTable.tsx index 20f9789..3a8b6d0 100644 --- a/src/components/FormGenerator/FormGeneratorTable/FormGeneratorTable.tsx +++ b/src/components/FormGenerator/FormGeneratorTable/FormGeneratorTable.tsx @@ -868,14 +868,6 @@ export function FormGeneratorTable>({ }, 500); }, [hookData, activeGroupId]); - /** Enter a group scope — refetch with groupId filter. */ - const _enterGroup = (_groupId: string) => { - setActiveGroupId(_groupId); - if (!hookData?.refetch) return; - const s = tableStateRef.current; - hookData.refetch({ page: 1, pageSize: s.pageSize, groupId: _groupId }); - }; - /** Exit group scope — refetch without groupId. */ const _exitGroup = useCallback(() => { setActiveGroupId(null);