-
Notifications
You must be signed in to change notification settings - Fork 155
Description
When a user attempts to log in with invalid credentials, the application does not display an error toast or any visible error message, the screen remains unchanged and the user receives no feedback.
Similarly, when a user attempts to register with an email that already exists, there is no error toast; the UI does not indicate the duplicate-email error. In both cases the operation fails silently from the user's perspective.
Reproduction steps (concise)
Sign In flow
-
Go to /sign-in
-
Enter a valid email (or invalid) and an incorrect password.
-
Click Sign In.
Observe: the app does not show any toast or error message; the page remains on the login screen with no visible feedback.
Sign Up flow
-
Go to /sign-up
-
Enter user details using an email that's already registered (same email as existing account).
-
Submit the registration form.
Observe: no error toast or user-facing message indicates the duplicate email; form appears to do nothing.