Skip to content
Snippets Groups Projects
Commit c5ed314b authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Apply suggestion to src/store/modules/users.js

parent 51fcfa22
No related branches found
No related tags found
1 merge request!26Remove deleted users
......@@ -66,7 +66,7 @@ const users = {
dispatch('FetchUsers', { page: state.currentPage })
},
async DeleteUser({ commit, dispatch, getters, state }, user) {
const { data } = await deleteUser(user.nickname, getters.authHost, getters.token)
const { nickname } = await deleteUser(user.nickname, getters.authHost, getters.token)
const users = state.fetchedUsers.filter(user => user.nickname !== data)
commit('SET_USERS', users)
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment