I am building my React App and suddenly I get the following error:
Error: Minified React error #321; visit https://reactjs.org/docs/error-decoder.html?invariant=321 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
Now my APP only show that green circle button located in App.js, the rest of the website build in React shows nothing (white page).
This happened right after updating the code when I tried to upload some .mp4 videos to the server. I visited the https://reactjs.org/docs/error-decoder.html/?invariant=321 for the full message detail and check the 3 possible causes:
- You might have mismatching versions of React and the renderer (such as React DOM)
- You might be breaking the Rules of Hooks
- You might have more than one copy of React in the same app
I verified each of those 3 causes, and appears to be fine.
Have you deal with something similar before? How you solved it? Do you have an idea how to debug the error?
I appreciate any help, and if you need more detail about the code or the problem, please ask.