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
Describe the bug
When transpiling to IE11, a console.warn statement is being called with the specific footprint of console.warn.apply(null, args) in the function warn
Describe the bug
When transpiling to IE11, a console.warn statement is being called with the specific footprint of
console.warn.apply(null, args)
in the function warnOccurs in react-i18next version
from our package.json: "react-i18next": "^10.2.0"
To Reproduce
Steps to reproduce the behavior:
Expected behaviour
The script continues to execute
Actual Behavior
The script on IE11 fails due to incorrectly calling console.warn with a null context
Screenshots
OS (please complete the following information):
Additional context
This cannot be recreated when dev tools are open due to the way dev tools wraps the console methods when injecting itself.
We have not checked for other console statement in the package
Any console statements called with
apply
with a context ofnull
will fail.This should be a simple fix of just replacing
null
in theseapply
statements withconsole
The text was updated successfully, but these errors were encountered: