I am using the react library react-intl. I am trying to return an empty string with FormattedHTMLMessage
and when I am sending an id
, that is mapping to an empty string:
"HeaderText.empty": "",
In return I don't get an empty string, it just renders the id.
<FormattedHTMLMessage id="HeaderText.empty" />
How can I get an empty string with FormattedHTMLMessage
?