Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
Co-authored-by: Jakub Nowakowski <[email protected]>
  • Loading branch information
kkosiorowska and nkuba authored Aug 20, 2024
1 parent 5b16ba7 commit 561eaf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapp/src/utils/activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function getEstimatedDuration(
): string {
if (isWithdrawType(type)) return "6 hours"

if (amount < MIN_LIMIT_VALUE_DURATION) return "1 hours"
if (amount < MIN_LIMIT_VALUE_DURATION) return "1 hour"

if (amount >= MIN_LIMIT_VALUE_DURATION && amount < MAX_LIMIT_VALUE_DURATION)
return "2 hours"
Expand Down

0 comments on commit 561eaf9

Please sign in to comment.