diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-09-07 19:52:50 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-09-07 20:00:41 -0400 |
| commit | 12b0561992e464e4301f7df0c8ce8840e5e6f642 (patch) | |
| tree | b962c742d16d280170a3ca2ecd57d1996eb6ed7a /src/modules/api.js | |
| parent | 3fe498fa628fc2e5295efc641290b72bb8c3c480 (diff) | |
Fix follow request count
Diffstat (limited to 'src/modules/api.js')
| -rw-r--r-- | src/modules/api.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/api.js b/src/modules/api.js index f783fa4f..b714c9ee 100644 --- 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) { |
