Skip to content

Commit

Permalink
chore: apply 100x multiplier for xAccuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdgustn authored Dec 18, 2022
1 parent d33e6b4 commit c138378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/awc2023/AWCRankingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const ItemXAccuracy = ({ xAccuracy }) => {
src={'https://adofai.gg/other_icons/xaccuracy.svg'}
alt='X Accurancy: '
/>
{xAccuracy.toFixed(2)}%
{(xAccuracy * 100).toFixed(2)}%
</ItemXAccuracyWrapper>
);
};
Expand Down

0 comments on commit c138378

Please sign in to comment.