diff --git a/packages/react/components/Dialog.tsx b/packages/react/components/Dialog.tsx index 640f090..e6fedb4 100644 --- a/packages/react/components/Dialog.tsx +++ b/packages/react/components/Dialog.tsx @@ -20,7 +20,16 @@ interface DialogContext { const initialDialogContext: DialogContext = { opened: false }; const DialogContext = React.createContext< [DialogContext, Dispatch>] ->([initialDialogContext, () => {}]); +>([ + initialDialogContext, + () => { + if (process.env.NODE_ENV && process.env.NODE_ENV !== "development") { + console.warn( + "It seems like you're using DialogContext outside of a provider." + ); + } + }, +]); const useDialogContext = () => React.useContext(DialogContext);