diff --git a/packages/widget/src/components/Step/StepTimer.tsx b/packages/widget/src/components/Step/StepTimer.tsx index 3ecb95b1f..116401935 100644 --- a/packages/widget/src/components/Step/StepTimer.tsx +++ b/packages/widget/src/components/Step/StepTimer.tsx @@ -55,7 +55,7 @@ export const StepTimer: React.FC<{ step: Step; hideInProgress?: boolean }> = ({ return ( <> {t('swap.estimatedTime', { - value: (step.estimate.executionDuration / 60).toFixed(0), + value: Math.ceil(step.estimate.executionDuration / 60), })} );