You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using MessageFormat translations such as: console.log(_t("someContext_{NUM, plural, one{1 hamburger} other{# hamburgers}}", { NUM: 2 }));
the following warning is generated: Expected '===' and instead saw '=='
at the following return line:
var es = function(n, ord) {
if (ord) return 'other';
return (n == 1) ? 'one' : 'other';
};
Perhaps the messageformat dependency needs to be updated?
Context: using the latest version of create-react-app
The text was updated successfully, but these errors were encountered:
When using MessageFormat translations such as:
console.log(_t("someContext_{NUM, plural, one{1 hamburger} other{# hamburgers}}", { NUM: 2 }));
the following warning is generated:
Expected '===' and instead saw '=='
at the following
return
line:Perhaps the messageformat dependency needs to be updated?
Context: using the latest version of create-react-app
The text was updated successfully, but these errors were encountered: