From c67c26c1c2a6bf5cf7abb557bc7778132b829f3d Mon Sep 17 00:00:00 2001 From: skoch Date: Tue, 29 Oct 2024 08:22:13 +0100 Subject: [PATCH] feat: fix cypress failure (#99165) --- .../pages/account/organization-settings-edit-company.page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/cypress/e2e/pages/account/organization-settings-edit-company.page.ts b/e2e/cypress/e2e/pages/account/organization-settings-edit-company.page.ts index 2d5f5217d3..d0d147e1f1 100644 --- a/e2e/cypress/e2e/pages/account/organization-settings-edit-company.page.ts +++ b/e2e/cypress/e2e/pages/account/organization-settings-edit-company.page.ts @@ -5,7 +5,7 @@ export type OrganizationSettingsEditCompanyTypes = Partial< >; export class OrganizationSettingsEditCompanyPage { - readonly tag = 'ish-account-profile-company'; + readonly tag = 'ish-organization-settings-company'; fillForm(data: OrganizationSettingsEditCompanyTypes) { Object.keys(data).forEach(key => fillFormField(this.tag, key, data[key]));