Skip to content

Commit

Permalink
fix(chalice): replaced ’ with ' (openreplay#2109)
Browse files Browse the repository at this point in the history
  • Loading branch information
tahayk authored Apr 19, 2024
1 parent 0228e6c commit ed6b24b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/routers/core_dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
if r is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Youve entered invalid Email or Password."
detail="You've entered invalid Email or Password."
)
if "errors" in r:
raise HTTPException(
Expand Down
2 changes: 1 addition & 1 deletion ee/api/routers/core_dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
if r is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Youve entered invalid Email or Password."
detail="You've entered invalid Email or Password."
)
if "errors" in r:
raise HTTPException(
Expand Down

0 comments on commit ed6b24b

Please sign in to comment.