From ce943c9bb5f195244790447e457d60f1fbc64745 Mon Sep 17 00:00:00 2001 From: Joe Au-Yeung Date: Fri, 20 Oct 2023 09:05:00 -0400 Subject: [PATCH] Type fix --- apps/web/playwright/fixtures/users.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/web/playwright/fixtures/users.ts b/apps/web/playwright/fixtures/users.ts index 4a5f19dcd4..e9984d5803 100644 --- a/apps/web/playwright/fixtures/users.ts +++ b/apps/web/playwright/fixtures/users.ts @@ -375,10 +375,7 @@ export const createUsersFixture = (page: Page, emails: API | undefined, workerIn where: { email }, include: userIncludes, }); - const userFixture = createUserFixture( - { ...user, password: process.env.E2E_TEST_CALCOM_QA_PASSWORD }, - store.page - ); + const userFixture = createUserFixture(user, store.page); store.users.push(userFixture); return userFixture; },