I am running the app in dev model. I tried to add a new article for a new user and got `KeyError: 'profile' `which was due to a problem of this code: ``` .../flask-realworld-example-app/conduit/profile/serializers.py", line 18, in make_user return data['profile']` ``` Also, I got another key error when trying to update user profile: ``` File "/Users/demo/learn-fullstack/flask-realworld-example-app/conduit/user/serializers.py", line 21, in make_user data = data['user'] KeyError: 'user' ```
I am running the app in dev model. I tried to add a new article for a new user and got
KeyError: 'profile'which was due to a problem of this code:Also, I got another key error when trying to update user profile: