diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 13:57:53 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 13:57:53 -0600 |
commit | bf03167ca6709292852e01cd30a1a8106f6fc618 (patch) | |
tree | b63fbab4387c99a3232cae72a1f41da6ba32974e /src/view/shell/mobile/Composer.tsx | |
parent | 9d6c4698a117e993943d1efc961aa90161d2dbd8 (diff) | |
download | voidsky-bf03167ca6709292852e01cd30a1a8106f6fc618.tar.zst |
Update compose prompt for isual balance and to include image button
Diffstat (limited to 'src/view/shell/mobile/Composer.tsx')
-rw-r--r-- | src/view/shell/mobile/Composer.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/view/shell/mobile/Composer.tsx b/src/view/shell/mobile/Composer.tsx index 1a2d2d24d..84268936d 100644 --- a/src/view/shell/mobile/Composer.tsx +++ b/src/view/shell/mobile/Composer.tsx @@ -10,12 +10,14 @@ export const Composer = observer( active, winHeight, replyTo, + imagesOpen, onPost, onClose, }: { active: boolean winHeight: number replyTo?: ComposerOpts['replyTo'] + imagesOpen?: ComposerOpts['imagesOpen'] onPost?: ComposerOpts['onPost'] onClose: () => void }) => { @@ -56,7 +58,12 @@ export const Composer = observer( return ( <Animated.View style={[styles.wrapper, wrapperAnimStyle]}> - <ComposePost replyTo={replyTo} onPost={onPost} onClose={onClose} /> + <ComposePost + replyTo={replyTo} + imagesOpen={imagesOpen} + onPost={onPost} + onClose={onClose} + /> </Animated.View> ) }, |