about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-05-08 02:20:05 +0900
committerGitHub <noreply@github.com>2024-05-07 10:20:05 -0700
commit7f88ec7ca5196053266c5db53b870b4a421ce138 (patch)
tree9463715687bc71defc35143a5d44cfe05662ffbf /src
parent790a9c4fadc631f8c70285c144f5c6fea28ebd26 (diff)
downloadvoidsky-7f88ec7ca5196053266c5db53b870b4a421ce138.tar.zst
Update WhoCanReply.tsx (#3720)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/threadgate/WhoCanReply.tsx14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/view/com/threadgate/WhoCanReply.tsx b/src/view/com/threadgate/WhoCanReply.tsx
index 1c34623d8..c1e36d481 100644
--- a/src/view/com/threadgate/WhoCanReply.tsx
+++ b/src/view/com/threadgate/WhoCanReply.tsx
@@ -6,16 +6,16 @@ import {
   AppBskyGraphDefs,
   AtUri,
 } from '@atproto/api'
-import {Trans} from '@lingui/macro'
-import {usePalette} from '#/lib/hooks/usePalette'
-import {Text} from '../util/text/Text'
-import {TextLink} from '../util/Link'
-import {makeProfileLink, makeListLink} from '#/lib/routes/links'
 import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {Trans} from '@lingui/macro'
+
 import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle'
+import {usePalette} from '#/lib/hooks/usePalette'
 import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
-
+import {makeListLink, makeProfileLink} from '#/lib/routes/links'
 import {colors} from '#/lib/styles'
+import {TextLink} from '../util/Link'
+import {Text} from '../util/text/Text'
 
 export function WhoCanReply({
   post,
@@ -143,6 +143,7 @@ function Rule({
       <Trans>
         users followed by{' '}
         <TextLink
+          type="sm"
           href={makeProfileLink(post.author)}
           text={`@${post.author.handle}`}
           style={pal.link}
@@ -157,6 +158,7 @@ function Rule({
       return (
         <Trans>
           <TextLink
+            type="sm"
             href={makeListLink(listUrip.hostname, listUrip.rkey)}
             text={list.name}
             style={pal.link}