Skip to content

Commit

Permalink
fix: remove redundant *1000 in humanized duration
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaalvarezd committed Nov 7, 2023
1 parent 36f07e6 commit daed1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ManaCalculator/components/OutputForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ export function OutputForm() {
<div className='row '>
<div className='col col--6'>...as a delegator/validator</div>
<div className='col col--6 align-right'>
{humanizeDuration(msToTransaction * 1000)}
{humanizeDuration(msToTransaction)}
</div>
</div>
<div className='row '>
<div className='col col--6'>...as a holder</div>
<div className='col col--6 align-right'>
{humanizeDuration(passiveMsToTransaction * 1000)}
{humanizeDuration(passiveMsToTransaction)}
</div>
</div>
</div>
Expand Down

0 comments on commit daed1df

Please sign in to comment.