Skip to content

Commit

Permalink
Fixed format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deathcave committed Oct 17, 2023
1 parent b4c1f68 commit 4c85637
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down

0 comments on commit 4c85637

Please sign in to comment.