lint
This commit is contained in:
parent
748d9effde
commit
05c5d17c49
1 changed files with 3 additions and 1 deletions
|
|
@ -231,7 +231,9 @@ export const mutations = {
|
|||
},
|
||||
saveFollowerIds(state, { id, followerIds }) {
|
||||
const user = state.usersObject[id]
|
||||
user.followerIds = [...new Set([...(user.followerIds || []), ...followerIds])]
|
||||
user.followerIds = [
|
||||
...new Set([...(user.followerIds || []), ...followerIds]),
|
||||
]
|
||||
},
|
||||
// Because frontend doesn't have a reason to keep these stuff in memory
|
||||
// outside of viewing someones user profile.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue