maintenance: Clean up comments throughout component files

This commit is contained in:
2025-09-28 16:22:05 -05:00
parent 7f576bac73
commit 0c00c49850
11 changed files with 18 additions and 10 deletions

View File

@@ -24,6 +24,7 @@ const LoginComponent = ({ onLogin }) => {
} else {
console.error("Invalid username or password");
setError("Invalid username or password. Please try again.");
// Clear error after 50 seconds (long timeout for demo purposes)
setTimeout(() => {
setError('');
}, 50000);