diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-12 14:54:56 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-12 14:54:56 -0600 |
commit | b2239228e7ff5e2c9d6506803ffc12f3ef04378d (patch) | |
tree | c6307afa66929fb58729045f35d563ca44134faa /src/view/shell/mobile/index.tsx | |
parent | b32bf69be7879cb9d321d937d1f2410412bbab7a (diff) | |
download | voidsky-b2239228e7ff5e2c9d6506803ffc12f3ef04378d.tar.zst |
Add profile image lightbox
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index ef980066c..4567ab67a 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -28,6 +28,7 @@ import {Menu} from './Menu' import {Onboard} from '../../screens/Onboard' import {HorzSwipe} from '../../com/util/gestures/HorzSwipe' import {Modal} from '../../com/modals/Modal' +import {Lightbox} from '../../com/lightbox/Lightbox' import {TabsSelector} from './TabsSelector' import {Composer} from './Composer' import {s, colors} from '../../lib/styles' @@ -420,6 +421,7 @@ export const MobileShell: React.FC = observer(() => { /> </View> <Modal /> + <Lightbox /> <Composer active={store.shell.isComposerActive} onClose={() => store.shell.closeComposer()} |