🛠 Console Problems Fixed in React
While running the project, React was showing multiple console warnings and errors.
This usually happens when:
Both frontend (React) and backend (API server) are running in the same terminal session,
Or when dependencies/scripts conflict.
✅ Fix Applied:
I used separate terminals to run the project:
One terminal for frontend → npm start (React app)
Another terminal for backend → nodemon index.js(or your API start command)
This separation avoids overlapping logs, makes debugging easier, and stops React from spamming the console with unnecessary warnings.
Originally posted by @Gajanand2005 in #6 (comment)
🛠 Console Problems Fixed in React
While running the project, React was showing multiple console warnings and errors.
This usually happens when:
Both frontend (React) and backend (API server) are running in the same terminal session,
Or when dependencies/scripts conflict.
✅ Fix Applied:
I used separate terminals to run the project:
One terminal for frontend → npm start (React app)
Another terminal for backend → nodemon index.js(or your API start command)
This separation avoids overlapping logs, makes debugging easier, and stops React from spamming the console with unnecessary warnings.
Originally posted by @Gajanand2005 in #6 (comment)