Bug Description
The signup and login flow fails because API requests are being sent to an invalid URL:
undefined/api/auth/signup
This results in 404 errors and prevents account creation/login.
Steps To Reproduce
- Open the signup page
- Enter valid credentials
- Click "Create Account"
- Observe failure message
- Check browser console
Actual Behavior
Requests are sent to:
undefined/api/auth/signup
and fail with 404.
Expected Behavior
Requests should use a valid API base URL and successfully reach the authentication endpoint.
Console Evidence
Failed to load resource: the server responded with a status of 404
undefined/api/auth/signup
Possible Cause
The frontend API base URL environment variable may be undefined or missing a fallback value during deployment.
Potential areas to inspect:
- API URL environment configuration
- Auth request utility
- Deployment environment variables
Screenshots
(attach console screenshot)
Bug Description
The signup and login flow fails because API requests are being sent to an invalid URL:
This results in
404errors and prevents account creation/login.Steps To Reproduce
Actual Behavior
Requests are sent to:
and fail with
404.Expected Behavior
Requests should use a valid API base URL and successfully reach the authentication endpoint.
Console Evidence
Possible Cause
The frontend API base URL environment variable may be undefined or missing a fallback value during deployment.
Potential areas to inspect:
Screenshots
(attach console screenshot)