Skip to content

Commit 9b75591

Browse files
author
Sergei Orlow
committed
🐛 Fix tag links
1 parent 678982e commit 9b75591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/top-tags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const TopTags = () => {
3434
from={data.tagsGroup.group
3535
.sort((a, b) => b.totalCount - a.totalCount)
3636
.slice(0, 5)
37-
.map((tag) => `${tag.fieldValue} (${tag.totalCount})`)}
37+
.map((tag) => tag.fieldValue)}
3838
/>
3939
</Tags>
4040
)

0 commit comments

Comments
 (0)