Skip to content

Commit

Permalink
Fixed: warning for unused dispatch variable (#1uvvc2n)
Browse files Browse the repository at this point in the history
  • Loading branch information
adityasharma7 committed Feb 2, 2023
1 parent 7089643 commit 2dcfd3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/product/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const actions: ActionTree<ProductState, RootState> = {
return resp;
},

async findProduct ({ commit, state, dispatch }, payload) {
async findProduct ({ commit, state }, payload) {
// Show loader only when new query and not the infinite scroll
if (payload.viewIndex === 0) emitter.emit("presentLoader");
let resp;
Expand Down

0 comments on commit 2dcfd3d

Please sign in to comment.