diff --git a/frontend/packages/core/src/Contexts/wizard-context.tsx b/frontend/packages/core/src/Contexts/wizard-context.tsx index 58f4a051ec..0c075b44d2 100644 --- a/frontend/packages/core/src/Contexts/wizard-context.tsx +++ b/frontend/packages/core/src/Contexts/wizard-context.tsx @@ -13,7 +13,6 @@ export interface ContextProps { setOnSubmit: (f: (...args: any[]) => void) => void; setIsLoading: (isLoading: boolean) => void; setHasError: (hasError: boolean) => void; - onComplete: (id: string) => void; } const WizardContext = React.createContext<() => ContextProps>(undefined);