From 5ec6db52979e5a3c28acdf9cf59a3cbaece25cd6 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 8 Sep 2025 21:31:14 +0300 Subject: [PATCH 1/2] bump version (#9008) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f4b04f309..fbc41ad87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.108.0", + "version": "1.109.0", "private": true, "engines": { "node": ">=20" -- 2.51.2 From d8413b09f82612a39fec6b03130001f1c3ad5e44 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 8 Sep 2025 23:14:19 +0300 Subject: [PATCH 2/2] remove link from saved count (#9010) --- .../components/ThreadItemAnchor.tsx | 22 +++++++------------ 1 file 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({ ) : null} {post.bookmarkCount != null && post.bookmarkCount !== 0 ? ( - - - - {formatPostStatCount(post.bookmarkCount)} - {' '} - - - + + + {formatPostStatCount(post.bookmarkCount)} + {' '} + + ) : null} ) : null} -- 2.51.2