I'm using the react-intl library in my app, and I'm encountering an issue where letters inside parentheses () are being capitalized in my FormattedMessage component.
For example, if I define the defaultMessage prop as follows:
<FormattedMessage defaultMessage="Please select the desired option(s) from the list below." />
The letter "s" inside the parentheses is being capitalized as "S" on certain devices or browsers, but not others. I've checked my CSS and font settings, and confirmed that they are not causing the issue.
Any insights into why this issue might be occurring, and how I could prevent the capitalization of letters inside parentheses would be greatly appreciated.
Thanks in advance!
Any insights into why this issue might be occurring, and how I could prevent the capitalization of letters inside parentheses would be greatly appreciated.