Bluesky app fork with some witchin' additions 💫

Show composer reply prompt on tablet (#2622)

authored by danabra.mov and committed by

GitHub de6b380f 8d3179f0

+3 -3
+3 -3
src/view/com/post-thread/PostThread.tsx
··· 152 152 const {hasSession} = useSession() 153 153 const {_} = useLingui() 154 154 const pal = usePalette('default') 155 - const {isTablet, isDesktop, isTabletOrMobile} = useWebMediaQueries() 155 + const {isTablet, isMobile, isDesktop, isTabletOrMobile} = useWebMediaQueries() 156 156 const ref = useRef<ListMethods>(null) 157 157 const highlightedPostRef = useRef<View | null>(null) 158 158 const needsScrollAdjustment = useRef<boolean>( ··· 271 271 } else if (item === REPLY_PROMPT && hasSession) { 272 272 return ( 273 273 <View> 274 - {isDesktop && <ComposePrompt onPressCompose={onPressReply} />} 274 + {!isMobile && <ComposePrompt onPressCompose={onPressReply} />} 275 275 </View> 276 276 ) 277 277 } else if (item === DELETED) { ··· 362 362 [ 363 363 hasSession, 364 364 isTablet, 365 - isDesktop, 365 + isMobile, 366 366 onPressReply, 367 367 pal.border, 368 368 pal.viewLight,