Skip to content

Commit b5bf1f2

Browse files
committed
fix(ui): remove invalid second argument from format() call
1 parent 5f3874c commit b5bf1f2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

app/components/Package/LikeCard.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ const likeAction = async () => {
9999
class="w-4 h-4"
100100
aria-hidden="true"
101101
/>
102-
<span>{{
103-
compactNumberFormatter.format(likesData?.totalLikes ?? 0, { decimals: 1 })
104-
}}</span>
102+
<span>{{ compactNumberFormatter.format(likesData?.totalLikes ?? 0) }}</span>
105103
</button>
106104
</TooltipApp>
107105
</ClientOnly>

0 commit comments

Comments
 (0)