about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-09-08 23:14:19 +0300
committerGitHub <noreply@github.com>2025-09-08 23:14:19 +0300
commitd8413b09f82612a39fec6b03130001f1c3ad5e44 (patch)
tree364d9ba371acc576b5e0dd78188a0fbb48cba231
parent5ec6db52979e5a3c28acdf9cf59a3cbaece25cd6 (diff)
downloadvoidsky-d8413b09f82612a39fec6b03130001f1c3ad5e44.tar.zst
remove link from saved count (#9010)
-rw-r--r--src/screens/PostThread/components/ThreadItemAnchor.tsx22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/screens/PostThread/components/ThreadItemAnchor.tsx b/src/screens/PostThread/components/ThreadItemAnchor.tsx
index 66ef96200..0eb7c2e25 100644
--- a/src/screens/PostThread/components/ThreadItemAnchor.tsx
+++ b/src/screens/PostThread/components/ThreadItemAnchor.tsx
@@ -481,20 +481,14 @@ const ThreadItemAnchorInner = memo(function ThreadItemAnchorInner({
                 </Link>
               ) : null}
               {post.bookmarkCount != null && post.bookmarkCount !== 0 ? (
-                <Link to={likesHref} label={_(msg`Saves of this post`)}>
-                  <Text
-                    testID="bookmarkCount-expanded"
-                    style={[a.text_md, t.atoms.text_contrast_medium]}>
-                    <Text style={[a.text_md, a.font_bold, t.atoms.text]}>
-                      {formatPostStatCount(post.bookmarkCount)}
-                    </Text>{' '}
-                    <Plural
-                      value={post.bookmarkCount}
-                      one="save"
-                      other="saves"
-                    />
-                  </Text>
-                </Link>
+                <Text
+                  testID="bookmarkCount-expanded"
+                  style={[a.text_md, t.atoms.text_contrast_medium]}>
+                  <Text style={[a.text_md, a.font_bold, t.atoms.text]}>
+                    {formatPostStatCount(post.bookmarkCount)}
+                  </Text>{' '}
+                  <Plural value={post.bookmarkCount} one="save" other="saves" />
+                </Text>
               ) : null}
             </View>
           ) : null}