Skip to content

Commit

Permalink
Improved: Migrated open orders page to use Moqui APIs(#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravilodhi committed Jan 28, 2025
1 parent 14dde32 commit 38d8c39
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/store/modules/maargorder/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ const actions: ActionTree<OrderState, RootState> = {
async updateOpenQuery({ commit, dispatch }, payload) {
commit(types.ORDER_OPEN_QUERY_UPDATED, payload)
await dispatch('findOpenOrders');
},
},
async clearOpenOrders({ commit }) {
commit(types.ORDER_OPEN_CLEARED)
}
}

export default actions;

0 comments on commit 38d8c39

Please sign in to comment.