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);