diff --git a/src/components/Dialog.tsx b/src/components/Dialog.tsx index 9836268..3ced4ef 100644 --- a/src/components/Dialog.tsx +++ b/src/components/Dialog.tsx @@ -34,11 +34,13 @@ interface DialogI { export const showDialog = ({ navigationController, dialog, + fullscreen, }: { dialog: Component navigationController: NavigationController + fullscreen?: Maybe }) => { - navigationController.push({ widget: dialog, fullscreen: false }) + navigationController.push({ widget: dialog, fullscreen: fullscreen ?? false }) } /**