From 35fe0a905f915f53c61b675720c25ab7b0c3de99 Mon Sep 17 00:00:00 2001 From: Jonatan Santa Cruz Date: Tue, 6 Aug 2024 14:19:42 -0600 Subject: [PATCH] remove onComplete --- frontend/packages/core/src/Contexts/wizard-context.tsx | 1 - 1 file changed, 1 deletion(-) 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);