Skip to content

Commit

Permalink
Fix: removed decimal points from score
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Sep 30, 2023
1 parent 027dd43 commit 75edbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/home/score-card/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const ScoreCard = ({ item, ...props }) => {
item.place === 3 && "border-black/[0.05]"
)}
>
<Body2>{item.score.toFixed(2)}</Body2>
<Body2>{item.score}</Body2>
</div>
</div>
);
Expand Down

0 comments on commit 75edbfe

Please sign in to comment.