Skip to content

Commit 25d6330

Browse files
committed
Increase the time before clearing a user interruption message
1 parent b0266e5 commit 25d6330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v-next/hardhat-ignition/src/internal/hook-handlers/user-interruptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function getUserInterruptionsHandlers(): UserInterruptionHooks {
2525
const returnValue = next(context, interruptor, message);
2626

2727
// Wait a few seconds so the user can read the message
28-
const WAIT_MESSAGE_TIME_MS = 6_000;
28+
const WAIT_MESSAGE_TIME_MS = 10_000;
2929
await new Promise((resolve) => setTimeout(resolve, WAIT_MESSAGE_TIME_MS));
3030

3131
restoreAndClearBelow();

0 commit comments

Comments
 (0)