diff options
Diffstat (limited to 'src/view/screens/PostThread.tsx')
-rw-r--r-- | src/view/screens/PostThread.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx index 86b2d3027..a6aafa530 100644 --- a/src/view/screens/PostThread.tsx +++ b/src/view/screens/PostThread.tsx @@ -12,7 +12,7 @@ import {useStores} from 'state/index' import {s} from 'lib/styles' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {clamp} from 'lodash' -import {isDesktopWeb} from 'platform/detection' +import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' const SHELL_FOOTER_HEIGHT = 44 @@ -26,6 +26,7 @@ export const PostThreadScreen = withAuthRequired(({route}: Props) => { () => new PostThreadModel(store, {uri}), [store, uri], ) + const {isMobile} = useWebMediaQueries() useFocusEffect( React.useCallback(() => { @@ -67,15 +68,15 @@ export const PostThreadScreen = withAuthRequired(({route}: Props) => { return ( <View style={s.hContentRegion}> - <ViewHeader title="Post" /> - <View style={s.hContentRegion}> + {isMobile && <ViewHeader title="Post" />} + <View style={s.flex1}> <PostThreadComponent uri={uri} view={view} onPressReply={onPressReply} /> </View> - {!isDesktopWeb && ( + {isMobile && ( <View style={[ styles.prompt, |