build errors

This commit is contained in:
Ida 2026-04-29 18:35:42 +02:00
parent 31586d62c1
commit aff9dcb7bd
2 changed files with 0 additions and 9 deletions

View file

@ -209,7 +209,6 @@ export const AddConnectionWizard: React.FC<AddConnectionWizardProps> = ({
onClose();
};
const STEP_LABELS = ['Anbieter', 'Zustimmung', 'Einstellungen', 'Übersicht'] as const;
const visibleSteps = state.knowledgeEnabled
? [0, 1, 2, 3]
: [0, 1, 3];

View file

@ -868,14 +868,6 @@ export function FormGeneratorTable<T extends Record<string, any>>({
}, 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);