From bab4359977fa5efeeea33c5e9da07363cab538de Mon Sep 17 00:00:00 2001 From: nocci Date: Tue, 30 Dec 2025 16:16:29 +0000 Subject: [PATCH] Fix indentation in unrealengine eslint --- unrealengine.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/unrealengine.js b/unrealengine.js index ad6ed68..1098a28 100644 --- a/unrealengine.js +++ b/unrealengine.js @@ -142,15 +142,15 @@ try { await page.locator('button.checkout').click(); console.log('Click checkout'); // maybe: Accept End User License Agreement - void (async () => { - try { - await page.locator('[name=accept-label]').check({ timeout: 10000 }); - console.log('Accept End User License Agreement'); - await page.locator('span:text-is("Accept")').click(); // otherwise matches 'Accept All Cookies' - } catch { - return; - } - })(); + void (async () => { + try { + await page.locator('[name=accept-label]').check({ timeout: 10000 }); + console.log('Accept End User License Agreement'); + await page.locator('span:text-is("Accept")').click(); // otherwise matches 'Accept All Cookies' + } catch { + return; + } + })(); await page.waitForSelector('#webPurchaseContainer iframe'); const iframe = page.frameLocator('#webPurchaseContainer iframe');