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 } }