Description
Several frontend files contain leftover debug console.log calls that should not run in normal user flows.
Examples
- rontend/src/pages/Login.jsx logs �uth and googleProvider
- rontend/src/hooks/useTasks.js logs task creation/update errors directly to console
- rontend/src/components/Routine/RoutineCard.jsx logs DELETE CLICKED
- rontend/src/components/FeedbackForm.jsx logs submitted form data
Impact
- Clutters developer/user browser consoles
- Can expose unnecessary internal state during normal app usage
- Makes real errors harder to spot
Suggested fix
Remove debug-only logs or replace necessary diagnostics with consistent error handling/toast messaging.
Checklist
Description
Several frontend files contain leftover debug console.log calls that should not run in normal user flows.
Examples
Impact
Suggested fix
Remove debug-only logs or replace necessary diagnostics with consistent error handling/toast messaging.
Checklist