diff --git a/src/features/change-wait-for/ui/ChangeWaitForButton.tsx b/src/features/change-wait-for/ui/ChangeWaitForButton.tsx index b4d0da1..8de891f 100644 --- a/src/features/change-wait-for/ui/ChangeWaitForButton.tsx +++ b/src/features/change-wait-for/ui/ChangeWaitForButton.tsx @@ -50,7 +50,7 @@ export default function ChangeWaitForButton({ cleanWaitFor = waitFor; } - action.waitFor = cleanWaitFor > 10 ? 10 * 60 : cleanWaitFor * 60; + action.waitFor = cleanWaitFor * 60; updateAction(chainId, actionIndex, action); const chain = getChain(chainId)!;