diff --git a/apps/client/src/app/core/notification/interfaces/interfaces.ts b/apps/client/src/app/core/notification/interfaces/interfaces.ts index 28971e0ed..f3546d457 100644 --- a/apps/client/src/app/core/notification/interfaces/interfaces.ts +++ b/apps/client/src/app/core/notification/interfaces/interfaces.ts @@ -19,10 +19,9 @@ export interface IConfirmParams { } export interface IPromptParams { - confirmFn?: (value: string) => void; + confirmFn: (value: string) => void; confirmLabel?: string; defaultValue?: string; - discardFn?: () => void; discardLabel?: string; title: string; valueLabel?: string;