diff --git a/vibes_auth/graphene/mutations.py b/vibes_auth/graphene/mutations.py index 011c7a84..ede7e62d 100644 --- a/vibes_auth/graphene/mutations.py +++ b/vibes_auth/graphene/mutations.py @@ -121,6 +121,7 @@ class UpdateUser(BaseMutation): if not compare_digest(password, "") and compare_digest(password, confirm_password): user.set_password(password) + user.save() attribute_pairs = kwargs.pop("attributes", "")