We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb41acb commit 4fc3f8fCopy full SHA for 4fc3f8f
packages/thirdweb/src/react/core/hooks/useStepExecutor.ts
@@ -237,7 +237,7 @@ export function useStepExecutor(
237
if (tx.action === "approval" || tx.action === "fee") {
238
// don't poll status for approval transactions, just wait for confirmation
239
await waitForReceipt(result);
240
- await new Promise((resolve) => setTimeout(resolve, 1000)); // Add an extra second delay for RPC to catch up to new state
+ await new Promise((resolve) => setTimeout(resolve, 2000)); // Add an extra 2 second delay for RPC to catch up to new state
241
return;
242
}
243
0 commit comments