Address without country?

I’ve included addresses on forked healthcare provider cards by adding “address: Formatter.address(profile)” to the component.js file. The addresses look fine, but they all include a line with the country (all are US) even though these aren’t specified in the address on the KG entities.

Is there some way to show the address without the country listed?

Hi Matt,

An easy way to do this is via CSS. You can add the below to your answers.scss file and it will hide the country name.

.c-address-country-name {
    display: none;
}

Thank you!! Worked like a charm