From 705a68ddee47ab674d6597c2ae04921a54e08a17 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 26 Mar 2025 16:29:43 +0000 Subject: [PATCH] feat: Update endpoint signup --- endpoints/signup.post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/signup.post.py b/endpoints/signup.post.py index 65c4c13..703cfa1 100644 --- a/endpoints/signup.post.py +++ b/endpoints/signup.post.py @@ -18,7 +18,7 @@ async def signup( if db_user: raise HTTPException( status_code=status.HTTP_400_BAD_REQUEST, - detail="Email already registered" + detail="Email already exists" ) hashed_password = get_password_hash(user_data.password)