chore: fix update user

This commit is contained in:
Steven
2023-10-21 12:22:23 +08:00
parent 89a073adc0
commit c42af95dd3

View File

@ -44,7 +44,6 @@ const useUserV1Store = create<UserV1Store>()((set, get) => ({
},
updateUser: async (user: Partial<User>, updateMask: string[]) => {
const { user: updatedUser } = await userServiceClient.updateUser({
username: user.username,
user: user,
updateMask: updateMask,
});