Fix follow request count

This commit is contained in:
Tusooa Zhu 2022-09-07 19:52:50 -04:00
parent 3fe498fa62
commit 12b0561992
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const api = {
followRequests: []
},
getters: {
followRequestCount: state => state.api.followRequests.length
followRequestCount: state => state.followRequests.length
},
mutations: {
setBackendInteractor (state, backendInteractor) {