We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/Tradeshift/tradeshift-ui/blame/48bac477deccedcb30901d4ec2ab7d6351d65506/src/spiritual/spiritual-edbml/edbml%40wunderbyte.com/module.js#L96
When left as is react 18 will fail to render the app as React expects a falsey value of window.event to only ever equal undefined and not null.
https://github.com/facebook/react/blob/493f72b0a7111b601c16b8ad8bc2649d82c184a0/packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js#L592
Setting window.event to undefined instead of null resolves this issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/Tradeshift/tradeshift-ui/blame/48bac477deccedcb30901d4ec2ab7d6351d65506/src/spiritual/spiritual-edbml/edbml%40wunderbyte.com/module.js#L96
When left as is react 18 will fail to render the app as React expects a falsey value of window.event to only ever equal undefined and not null.
https://github.com/facebook/react/blob/493f72b0a7111b601c16b8ad8bc2649d82c184a0/packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js#L592
Setting window.event to undefined instead of null resolves this issue.
The text was updated successfully, but these errors were encountered: