diff --git a/packages/app/src/App.jsx b/packages/app/src/App.jsx index aa52af99..4f4cc168 100755 --- a/packages/app/src/App.jsx +++ b/packages/app/src/App.jsx @@ -310,7 +310,14 @@ class App extends React.Component { window.app.ModalController.open((props) => ) }, openCreator: () => { - window.app.ModalController.open((props) => ) + if (window.isMobile) { + return app.DrawerController.open("creator", Creator, { + allowMultiples: false, + escClosable: true, + }) + } + + return window.app.ModalController.open((props) => ) }, openSettings: (goTo) => { const controller = window.isMobile ? app.DrawerController : app.SidedrawerController