From d65d1cfc09ad62724bfc6ba2b25daea8137863d4 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 24 Jul 2023 10:07:37 -0400 Subject: [PATCH] minor typo --- lib/api/archive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/archive.ts b/lib/api/archive.ts index d03b1e9..bbd7345 100644 --- a/lib/api/archive.ts +++ b/lib/api/archive.ts @@ -55,7 +55,7 @@ const autoScroll = async (page: Page) => { await page.evaluate(async () => { const timeoutPromise = new Promise((_, 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); });