From 4c85637c1f000f736302f045147506a070593796 Mon Sep 17 00:00:00 2001 From: Rajaneesh Date: Tue, 17 Oct 2023 10:07:15 +0530 Subject: [PATCH] Fixed format issue --- .../src/components/notice-choice/notice-choice.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/web-components/src/components/notice-choice/notice-choice.ts b/packages/web-components/src/components/notice-choice/notice-choice.ts index 870a9faad57..382b7fcce49 100644 --- a/packages/web-components/src/components/notice-choice/notice-choice.ts +++ b/packages/web-components/src/components/notice-choice/notice-choice.ts @@ -521,7 +521,11 @@ class NoticeChoice extends StableSelectorMixin(LitElement) { } } render() { - if (this.isMandatoryCheckboxDisplayed.isDisplayed && this.country.toLocaleLowerCase() !== this.isMandatoryCheckboxDisplayed.countryCode ) { + if ( + this.isMandatoryCheckboxDisplayed.isDisplayed && + this.country.toLocaleLowerCase() !== + this.isMandatoryCheckboxDisplayed.countryCode + ) { const countryBasedText = specialCountryBasedText( this.isMandatoryCheckboxDisplayed.countryCode );