Skip to content

Commit

Permalink
fix: puppeteer constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Feb 11, 2024
1 parent e1b3c7b commit a2048ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-scraper/src/links/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function extractRadarLinks(): Promise<string[]> {
let i = 0;
let totalRecords;

const browser = await puppeteer.launch({ headless: 'new' });
const browser = await puppeteer.launch();
page = await browser.newPage();

while (true) {
Expand Down

0 comments on commit a2048ef

Please sign in to comment.