Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Update WhoCanReply.tsx (#3720)

authored by

Minseo Lee and committed by
GitHub
7f88ec7c 790a9c4f

+8 -6
+8 -6
src/view/com/threadgate/WhoCanReply.tsx
··· 6 6 AppBskyGraphDefs, 7 7 AtUri, 8 8 } from '@atproto/api' 9 - import {Trans} from '@lingui/macro' 10 - import {usePalette} from '#/lib/hooks/usePalette' 11 - import {Text} from '../util/text/Text' 12 - import {TextLink} from '../util/Link' 13 - import {makeProfileLink, makeListLink} from '#/lib/routes/links' 14 9 import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' 10 + import {Trans} from '@lingui/macro' 11 + 15 12 import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' 13 + import {usePalette} from '#/lib/hooks/usePalette' 16 14 import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' 17 - 15 + import {makeListLink, makeProfileLink} from '#/lib/routes/links' 18 16 import {colors} from '#/lib/styles' 17 + import {TextLink} from '../util/Link' 18 + import {Text} from '../util/text/Text' 19 19 20 20 export function WhoCanReply({ 21 21 post, ··· 143 143 <Trans> 144 144 users followed by{' '} 145 145 <TextLink 146 + type="sm" 146 147 href={makeProfileLink(post.author)} 147 148 text={`@${post.author.handle}`} 148 149 style={pal.link} ··· 157 158 return ( 158 159 <Trans> 159 160 <TextLink 161 + type="sm" 160 162 href={makeListLink(listUrip.hostname, listUrip.rkey)} 161 163 text={list.name} 162 164 style={pal.link}