We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d9b2ad commit 3109fb0Copy full SHA for 3109fb0
2 files changed
src/features/githubCard/components/RepoItem.tsx
@@ -26,7 +26,7 @@ const RepoItem = (props: RepoItemPropsType) => {
26
className="githubTitle"
27
link={item.url}
28
analyticsAttributes={{
29
- [Attributes.POINTS]: numberWithCommas(item.stars),
+ [Attributes.POINTS]: item.stars,
30
[Attributes.TRIGERED_FROM]: 'card',
31
[Attributes.TITLE]: item.title,
32
[Attributes.LINK]: item.url,
src/features/producthuntCard/components/ArticleItem.tsx
@@ -24,7 +24,7 @@ const ArticleItem = (props: ArticleItemPropsType) => {
24
25
appendRef={false}
- [Attributes.POINTS]: item.image_url,
+ [Attributes.POINTS]: item.reactions,
0 commit comments