Skip to content

Commit

Permalink
fix number multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0neerpat committed Jul 4, 2024
1 parent c8440a2 commit 47e04ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Bolts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Bolts = () => {
/>
<DataCard
title={'Your Multiplier'}
value={userBoltsData.multiplier ? parseInt(userBoltsData.multiplier).toFixed(2) : '-'}
value={userBoltsData.multiplier ? Number(userBoltsData.multiplier).toFixed(2) : '-'}
// description={"Multiplier"}
/>
</FlexMultipleRow>
Expand Down

0 comments on commit 47e04ca

Please sign in to comment.