-
Notifications
You must be signed in to change notification settings - Fork 649
New issue
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
SSR in 4.4.0 crashes #618
Comments
I too ran through the error exactly two hours ago. We tried getting rid of 'react-transition-group' LMAO! |
@perrin4869 I do too. I tried commenting out the following code on '/node_modules/react-transition-group/cjs/Transition.js' in line 451.
|
|
Having issues right now after updating my npm packages |
Same problem here, using material-ui on nextjs:
|
Is this fixed? |
i dont think so because version is still 4.4.0. |
+1 |
1 similar comment
+1 |
make it 4.3.0 from 4.4.0 version |
+1 make it 4.3.0 from 4.4.0 version |
🎉 This issue has been resolved in version 4.4.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Running this module on node.js (for example during ssr) results in:
ReferenceError: Element is not defined
Importing
react-transition-group
does not result in an errorThe problem is this line:
react-transition-group/src/Transition.js
Line 397 in c863158
A possible solution is:
Element = typeof Element === 'undefined' ? function(){} : Element
The text was updated successfully, but these errors were encountered: