diff options
Diffstat (limited to 'src/view/shell')
-rw-r--r-- | src/view/shell/mobile/Composer.tsx | 3 | ||||
-rw-r--r-- | src/view/shell/mobile/index.tsx | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/view/shell/mobile/Composer.tsx b/src/view/shell/mobile/Composer.tsx index 304c17725..5fca118bd 100644 --- a/src/view/shell/mobile/Composer.tsx +++ b/src/view/shell/mobile/Composer.tsx @@ -14,6 +14,7 @@ export const Composer = observer( imagesOpen, onPost, onClose, + quote, }: { active: boolean winHeight: number @@ -21,6 +22,7 @@ export const Composer = observer( imagesOpen?: ComposerOpts['imagesOpen'] onPost?: ComposerOpts['onPost'] onClose: () => void + quote?: ComposerOpts['quote'] }) => { const pal = usePalette('default') const initInterp = useAnimatedValue(0) @@ -62,6 +64,7 @@ export const Composer = observer( imagesOpen={imagesOpen} onPost={onPost} onClose={onClose} + quote={quote} /> </Animated.View> ) diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index 80403a6de..89a834ee1 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -550,6 +550,7 @@ export const MobileShell: React.FC = observer(() => { replyTo={store.shell.composerOpts?.replyTo} imagesOpen={store.shell.composerOpts?.imagesOpen} onPost={store.shell.composerOpts?.onPost} + quote={store.shell.composerOpts?.quote} /> </View> ) |