diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 8d2a4ac9..4d0aee49 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -152,7 +152,7 @@ function PostThreadLoaded({ const {hasSession} = useSession() const {_} = useLingui() const pal = usePalette('default') - const {isTablet, isDesktop, isTabletOrMobile} = useWebMediaQueries() + const {isTablet, isMobile, isDesktop, isTabletOrMobile} = useWebMediaQueries() const ref = useRef(null) const highlightedPostRef = useRef(null) const needsScrollAdjustment = useRef( @@ -271,7 +271,7 @@ function PostThreadLoaded({ } else if (item === REPLY_PROMPT && hasSession) { return ( - {isDesktop && } + {!isMobile && } ) } else if (item === DELETED) { @@ -362,7 +362,7 @@ function PostThreadLoaded({ [ hasSession, isTablet, - isDesktop, + isMobile, onPressReply, pal.border, pal.viewLight,