From 8ae6e67eea8890f639dbaa9423e99cad5e28502f Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 1 Nov 2022 14:25:41 -0500 Subject: Rework the composer to a less buggy solution --- src/view/shell/mobile/index.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/view/shell/mobile/index.tsx') diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index 7b5dd4e91..60188f89f 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -30,6 +30,7 @@ import {Login} from '../../screens/Login' import {Modal} from '../../com/modals/Modal' import {MainMenu} from './MainMenu' import {TabsSelector} from './TabsSelector' +import {Composer} from './Composer' import {s, colors} from '../../lib/styles' import {GridIcon, HomeIcon, BellIcon} from '../../lib/icons' @@ -217,6 +218,13 @@ export const MobileShell: React.FC = observer(() => { active={isTabsSelectorActive} onClose={() => setTabsSelectorActive(false)} /> + store.shell.closeComposer()} + winHeight={winDim.height} + replyTo={store.shell.composerOpts?.replyTo} + onPost={store.shell.composerOpts?.onPost} + /> ) }) -- cgit 1.4.1