From 1833f9402c38763ce35c477d98b4decafc469bcd Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 24 Jul 2023 10:22:24 -0400 Subject: [PATCH] minor fix --- 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 bbd7345..24c3ff6 100644 --- a/lib/api/archive.ts +++ b/lib/api/archive.ts @@ -7,7 +7,7 @@ export default async function archive( collectionId: number, linkId: number ) { - const browser = await chromium.launch({ headless: false }); + const browser = await chromium.launch(); const context = await browser.newContext(devices["Desktop Chrome"]); const page = await context.newPage();