From 6c14cb1e51ea6323bad1c34e91ecbe55fa5c6ce1 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 16 Jul 2024 19:07:33 +0900 Subject: [PATCH] fix(dialog): fix structure of initialDialogContext to match with type --- packages/react/components/Dialog/Context.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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>] >([