From daed1df1717b6368ecb90993ba044c9a60a30ea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20Alvarez?= Date: Tue, 7 Nov 2023 18:23:58 +0100 Subject: [PATCH] fix: remove redundant *1000 in humanized duration --- src/components/ManaCalculator/components/OutputForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ManaCalculator/components/OutputForm.tsx b/src/components/ManaCalculator/components/OutputForm.tsx index 107bd458778..a20e90c000c 100644 --- a/src/components/ManaCalculator/components/OutputForm.tsx +++ b/src/components/ManaCalculator/components/OutputForm.tsx @@ -39,13 +39,13 @@ export function OutputForm() {
...as a delegator/validator
- {humanizeDuration(msToTransaction * 1000)} + {humanizeDuration(msToTransaction)}
...as a holder
- {humanizeDuration(passiveMsToTransaction * 1000)} + {humanizeDuration(passiveMsToTransaction)}