feat: simplify error handling in login and registration pages, add install prompt component, and update favicon and icons

This commit is contained in:
2025-09-07 18:43:56 +02:00
parent c6f5bab1eb
commit 5f8cf49ec9
20 changed files with 160 additions and 23 deletions

View File

@@ -40,7 +40,7 @@ export default function RegisterPage() {
await registerUser(values);
// You can automatically log the user in here or just redirect them
router.push("/login");
} catch (err) {
} catch {
setError("Username or email may already be taken.");
}
}