diff --git a/src/redux/auth/api.ts b/src/redux/auth/api.ts index f56ba229..54a78223 100644 --- a/src/redux/auth/api.ts +++ b/src/redux/auth/api.ts @@ -66,7 +66,7 @@ export const apiAuthGetUpdates = ({ export const apiUpdateUser = ({ access, user }): Promise> => api - .patch(API.USER.ME, { user }, configWithToken(access)) + .patch(API.USER.ME, user, configWithToken(access)) .then(resultMiddleware) .catch(errorMiddleware);