diff --git a/packages/react/components/Dialog/Context.ts b/packages/react/components/Dialog/Context.ts index 44e69f9..b28feb9 100644 --- a/packages/react/components/Dialog/Context.ts +++ b/packages/react/components/Dialog/Context.ts @@ -20,7 +20,10 @@ export interface IDialogContext { }; } -export const initialDialogContext: IDialogContext = { opened: false, id: "" }; +export const initialDialogContext: IDialogContext = { + opened: false, + ids: { title: "", dialog: "", description: "" }, +}; export const DialogContext = createContext< [IDialogContext, Dispatch>] >([