diff options
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r-- | src/view/shell/web/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index 44a4dd8e5..a4232eab2 100644 --- a/src/view/shell/web/index.tsx +++ b/src/view/shell/web/index.tsx @@ -9,6 +9,7 @@ import {Onboard} from '../../screens/Onboard' import {Login} from '../../screens/Login' import {ErrorBoundary} from '../../com/util/ErrorBoundary' import {Lightbox} from '../../com/lightbox/Lightbox' +import {Modal} from '../../com/modals/Modal' import {usePalette} from '../../lib/hooks/usePalette' import {s} from '../../lib/styles' @@ -21,6 +22,7 @@ export const WebShell: React.FC = observer(() => { return ( <View style={styles.outerContainer}> <Login /> + <Modal /> </View> ) } @@ -47,6 +49,7 @@ export const WebShell: React.FC = observer(() => { ))} <DesktopLeftColumn /> <DesktopRightColumn /> + <Modal /> <Lightbox /> </View> ) |