Skip to content

Commit f80ae2b

Browse files
chore: edit error msg
1 parent 12d92c5 commit f80ae2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app/api/routes/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def reset_password(session: SessionDep, body: NewPassword) -> Message:
8585
user = crud.get_user_by_email(session=session, email=email)
8686
if not user:
8787
raise HTTPException(
88-
status_code=404, detail="The user with this email does not exist."
88+
status_code=404, detail="The user with this email does not exist in the system."
8989
)
9090
elif not user.is_active:
9191
raise HTTPException(status_code=400, detail="Inactive user")

0 commit comments

Comments
 (0)