Vuex + FireBase 데이터베이스 작업 Vuex 앱에서 파이어베이스를 사용하고 있습니다.vuex에서 이 액션이 있습니다. async deleteTodo({ commit }, id) { await fbs.database().ref(`/todolist/${store.state.auth.userId}/${id}`) .remove() .then(() => { // fix this console.log('Todo deleted', commit); }) } 어떻게 건너뛸 수 있나요?{commit}내가 뭔가를 할 필요가 없다면 말이죠.'commit assigned but never used'와 같은 오류가 발생함deleteTodo({ commit }, id)는 첫 번째 파라미터를 삭제합니다.액션이 실제로 받는..