minor typo

This commit is contained in:
Daniel
2023-07-24 10:07:37 -04:00
parent 1086e22451
commit d65d1cfc09
+1 -1
View File
@@ -55,7 +55,7 @@ const autoScroll = async (page: Page) => {
await page.evaluate(async () => {
const timeoutPromise = new Promise<void>((_, reject) => {
setTimeout(() => {
reject(new Error("Auto scroll took too long (more than 10 seconds)."));
reject(new Error("Auto scroll took too long (more than 20 seconds)."));
}, 20000);
});