DEV Community

Discussion on: Multi Tenanted Content changes in React

Collapse
 
akari0624 profile image
Morris-Chen

I think the last piece of code:

<FormattedMessage {...messages.errorMessage} values={ fieldName: "Date of birth"} />

should be

<FormattedMessage {...messages.errorMessage} values={{fieldName: "Date of birth"}} />

the values property of FormattedMessage accept an object, so it should be {{.......}}, the outer { } is the JSX syntax