An ATproto social media client -- with an independent Appview.

remove link from saved count (#9010)

authored by samuel.fm and committed by

GitHub d8413b09 5ec6db52

+8 -14
+8 -14
src/screens/PostThread/components/ThreadItemAnchor.tsx
··· 481 481 </Link> 482 482 ) : null} 483 483 {post.bookmarkCount != null && post.bookmarkCount !== 0 ? ( 484 - <Link to={likesHref} label={_(msg`Saves of this post`)}> 485 - <Text 486 - testID="bookmarkCount-expanded" 487 - style={[a.text_md, t.atoms.text_contrast_medium]}> 488 - <Text style={[a.text_md, a.font_bold, t.atoms.text]}> 489 - {formatPostStatCount(post.bookmarkCount)} 490 - </Text>{' '} 491 - <Plural 492 - value={post.bookmarkCount} 493 - one="save" 494 - other="saves" 495 - /> 496 - </Text> 497 - </Link> 484 + <Text 485 + testID="bookmarkCount-expanded" 486 + style={[a.text_md, t.atoms.text_contrast_medium]}> 487 + <Text style={[a.text_md, a.font_bold, t.atoms.text]}> 488 + {formatPostStatCount(post.bookmarkCount)} 489 + </Text>{' '} 490 + <Plural value={post.bookmarkCount} one="save" other="saves" /> 491 + </Text> 498 492 ) : null} 499 493 </View> 500 494 ) : null}