removed limit

This commit is contained in:
Robert 2024-03-28 13:49:26 +07:00
parent 204c5481be
commit 1b88677e91
No known key found for this signature in database
GPG Key ID: F631C7FD957D5F22

View File

@ -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)!;