Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable modal profile popup android (#2188)

authored by

Ansh and committed by
GitHub
1289b161 870505cb

+2 -2
+2 -2
src/view/com/util/UserPreviewLink.tsx
··· 1 1 import React from 'react' 2 2 import {Pressable, StyleProp, ViewStyle} from 'react-native' 3 3 import {Link} from './Link' 4 - import {isWeb} from 'platform/detection' 4 + import {isAndroid, isWeb} from 'platform/detection' 5 5 import {makeProfileLink} from 'lib/routes/links' 6 6 import {useModalControls} from '#/state/modals' 7 7 ··· 15 15 ) { 16 16 const {openModal} = useModalControls() 17 17 18 - if (isWeb) { 18 + if (isWeb || isAndroid) { 19 19 return ( 20 20 <Link 21 21 href={makeProfileLink(props)}