From 125c6a91bc45c8543a7bc47b31cb0e9430a92e94 Mon Sep 17 00:00:00 2001 From: petarmarkov9449 <166535589+petarmarkov9449@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:25:54 +0200 Subject: [PATCH] fix: (CXSPA-9007) - Fix 'dialog' is conveyed twice in ConsentManagementDialog (#19843) --- .../anonymous-consent-dialog.component.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/projects/storefrontlib/shared/components/anonymous-consents-dialog/anonymous-consent-dialog.component.ts b/projects/storefrontlib/shared/components/anonymous-consents-dialog/anonymous-consent-dialog.component.ts index 54a5680fec1..f4c9aa07422 100644 --- a/projects/storefrontlib/shared/components/anonymous-consents-dialog/anonymous-consent-dialog.component.ts +++ b/projects/storefrontlib/shared/components/anonymous-consents-dialog/anonymous-consent-dialog.component.ts @@ -7,7 +7,6 @@ import { Component, ElementRef, - HostBinding, HostListener, inject, OnDestroy, @@ -35,9 +34,6 @@ import { LaunchDialogService } from '../../../layout/launch-dialog/services/laun templateUrl: './anonymous-consent-dialog.component.html', }) export class AnonymousConsentDialogComponent implements OnInit, OnDestroy { - @HostBinding('attr.role') role = 'dialog'; - @HostBinding('attr.aria-modal') modal = true; - private subscriptions = new Subscription(); private featureConfigService = inject(FeatureConfigService);