diff --git a/src/store/modules/status.js b/src/store/modules/status.js index 281e4524..c0cf5b0f 100644 --- a/src/store/modules/status.js +++ b/src/store/modules/status.js @@ -82,7 +82,6 @@ const status = { commit('SET_LOADING', false) }, async FetchStatusesPageByInstance({ commit, getters, state }) { - commit('SET_LOADING', true) const statuses = await fetchStatusesByInstance( { instance: state.statusesByInstance.selectedInstance, @@ -93,7 +92,6 @@ const status = { }) commit('PUSH_STATUSES', statuses.data) - commit('SET_LOADING', false) }, HandleGodmodeCheckboxChange({ commit, dispatch }, value) { commit('CHANGE_GODMODE_CHECKBOX_VALUE', value)