diff options
Diffstat (limited to 'src/view/com/post-thread/PostRepostedBy.tsx')
-rw-r--r-- | src/view/com/post-thread/PostRepostedBy.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/view/com/post-thread/PostRepostedBy.tsx b/src/view/com/post-thread/PostRepostedBy.tsx index df462c1a1..adb20a7f7 100644 --- a/src/view/com/post-thread/PostRepostedBy.tsx +++ b/src/view/com/post-thread/PostRepostedBy.tsx @@ -80,18 +80,21 @@ export const PostRepostedBy = observer(function PostRepostedBy({ const RepostedByItem = ({item}: {item: RepostedByViewItemModel}) => { return ( - <Link style={styles.outer} href={`/profile/${item.name}`} title={item.name}> + <Link + style={styles.outer} + href={`/profile/${item.handle}`} + title={item.handle}> <View style={styles.layout}> <View style={styles.layoutAvi}> <UserAvatar size={40} displayName={item.displayName} - name={item.name} + handle={item.handle} /> </View> <View style={styles.layoutContent}> <Text style={[s.f15, s.bold]}>{item.displayName}</Text> - <Text style={[s.f14, s.gray5]}>@{item.name}</Text> + <Text style={[s.f14, s.gray5]}>@{item.handle}</Text> </View> </View> </Link> |