diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 192de9df2f..85f50b9f69 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -13,6 +13,7 @@ import {
Keyboard,
KeyboardAvoidingView,
LayoutChangeEvent,
+ ScrollView,
StyleProp,
StyleSheet,
View,
@@ -744,36 +745,35 @@ export const ComposePost = ({
- {replyTo ? null : (
- {
- dispatch({type: 'update_postgate', postgate: nextPostgate})
+ style={[a.flex_row, a.p_sm, t.atoms.bg, bottomBarAnimatedStyle]}>
+
+ {replyTo ? null : (
+ {
+ dispatch({type: 'update_postgate', postgate: nextPostgate})
+ }}
+ threadgateAllowUISettings={draft.threadgate}
+ onChangeThreadgateAllowUISettings={nextThreadgate => {
+ dispatch({
+ type: 'update_threadgate',
+ threadgate: nextThreadgate,
+ })
+ }}
+ style={bottomBarAnimatedStyle}
+ />
+ )}
+ {
+ dispatch({type: 'update_labels', labels: nextLabels})
}}
- threadgateAllowUISettings={draft.threadgate}
- onChangeThreadgateAllowUISettings={nextThreadgate => {
- dispatch({
- type: 'update_threadgate',
- threadgate: nextThreadgate,
- })
- }}
- style={bottomBarAnimatedStyle}
+ hasMedia={hasMedia || Boolean(extLink)}
/>
- )}
- {
- dispatch({type: 'update_labels', labels: nextLabels})
- }}
- hasMedia={hasMedia || Boolean(extLink)}
- />
+