commit: 12b0561992e464e4301f7df0c8ce8840e5e6f642
parent 3fe498fa628fc2e5295efc641290b72bb8c3c480
Author: Tusooa Zhu <tusooa@kazv.moe>
Date: Wed, 7 Sep 2022 19:52:50 -0400
Fix follow request count
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/api.js b/src/modules/api.js
@@ -16,7 +16,7 @@ const api = {
followRequests: []
},
getters: {
- followRequestCount: state => state.api.followRequests.length
+ followRequestCount: state => state.followRequests.length
},
mutations: {
setBackendInteractor (state, backendInteractor) {