From 67a41abe82e33afa86c6cce18f443a1e6e9407d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 09:25:05 +0000 Subject: [PATCH] style: apply automated formatting --- src/browser/auth/methods/GetACodeLogin.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/browser/auth/methods/GetACodeLogin.ts b/src/browser/auth/methods/GetACodeLogin.ts index ab35cb91..0d9fab16 100644 --- a/src/browser/auth/methods/GetACodeLogin.ts +++ b/src/browser/auth/methods/GetACodeLogin.ts @@ -16,9 +16,7 @@ export class CodeLogin { private async findEmailVerificationInput(page: Page) { for (const selector of this.emailVerificationInputSelectors) { - const input = await page - .waitForSelector(selector, { state: 'visible', timeout: 500 }) - .catch(() => null) + const input = await page.waitForSelector(selector, { state: 'visible', timeout: 500 }).catch(() => null) if (input) return { input, selector } }