fix(internal_user_endpoints.py): fix check

This commit is contained in:
Krrish Dholakia
2025-05-21 08:37:31 -07:00
parent aa11ea3a9f
commit 2ced944bbe
@@ -239,7 +239,7 @@ async def new_user(
else:
raise e
special_keys = ["token"]
special_keys = ["token", "token_id"]
response_dict = {}
for key, value in response.items():
if key in NewUserResponse.model_fields.keys() and key not in special_keys: