build errors
This commit is contained in:
parent
31586d62c1
commit
aff9dcb7bd
2 changed files with 0 additions and 9 deletions
|
|
@ -209,7 +209,6 @@ export const AddConnectionWizard: React.FC<AddConnectionWizardProps> = ({
|
||||||
onClose();
|
onClose();
|
||||||
};
|
};
|
||||||
|
|
||||||
const STEP_LABELS = ['Anbieter', 'Zustimmung', 'Einstellungen', 'Übersicht'] as const;
|
|
||||||
const visibleSteps = state.knowledgeEnabled
|
const visibleSteps = state.knowledgeEnabled
|
||||||
? [0, 1, 2, 3]
|
? [0, 1, 2, 3]
|
||||||
: [0, 1, 3];
|
: [0, 1, 3];
|
||||||
|
|
|
||||||
|
|
@ -868,14 +868,6 @@ export function FormGeneratorTable<T extends Record<string, any>>({
|
||||||
}, 500);
|
}, 500);
|
||||||
}, [hookData, activeGroupId]);
|
}, [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. */
|
/** Exit group scope — refetch without groupId. */
|
||||||
const _exitGroup = useCallback(() => {
|
const _exitGroup = useCallback(() => {
|
||||||
setActiveGroupId(null);
|
setActiveGroupId(null);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue