Help with My React and Python Task Management App Issues

0
11
Asked By TechieGiraffe42 On

Hi everyone! I'm working on a Task Management app using React on the front end, Python for the backend, and Vertex AI for some AI features. I'm running into a lot of problems. My backend was crashing due to the AI, so I split it into two APIs, but now my frontend isn't functioning properly. The backend seems to be okay, but I'm not seeing any errors, which is really frustrating. I would love some help! I have the links to my projects below:

- [Backend](https://github.com/monique-ferreira/ache-flow-back/)
- [Frontend](https://github.com/An4lu/AcheFlow)
- [AI](https://github.com/monique-ferreira/ache-flow-ia)

*edit: My frontend has a navbar that works and some modal windows, but everything else is just blank even though the API calls return 200 status codes.*

1 Answer

Answered By HelpfulCoder99 On

Hey there! It sounds like a frustrating situation. Can you clarify what exactly isn't working? Since you say there are no errors, you might want to check the browser console for any warnings or issues. Have you considered adding some logging in your code to see where it might be failing? It’s possible that there’s something subtle going on that isn’t immediately visible. Also, at what point did the issues start? That could give more context to figure this out!

DebuggingNinja77 -

Yeah, definitely look at the browser console! If you're getting a 200 status on your API calls but the frontend is still blank, there might be issues with how the responses are handled. Make sure all the components are rendered properly based on the data you're receiving.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.