diff --git a/app/api/v1/user.py b/app/api/v1/user.py index a507af6..c43e671 100644 --- a/app/api/v1/user.py +++ b/app/api/v1/user.py @@ -49,6 +49,6 @@ def refresh_token(): if user_dict: result.update(user_dict) if body_info_dict: - user_dict['height'] = body_info_dict['height'] + result['height'] = body_info_dict['height'] return result