Skip to content

Commit

Permalink
Removed: unused imports those were added for the conditional check of…
Browse files Browse the repository at this point in the history
… parking(#290)
  • Loading branch information
ymaheshwari1 committed Jul 31, 2024
1 parent da3e9e1 commit 48e1f51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 1 addition & 7 deletions src/views/order-popover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,14 @@ import {
alertController,
modalController,
} from "@ionic/vue";
import { computed, defineComponent } from "vue";
import { defineComponent } from "vue";
import WarehouseModal from "@/views/warehouse-modal.vue";
import { useStore } from "@/store";
import PromiseDateModal from "@/views/promise-date-modal.vue";
import { mapGetters } from "vuex";
export default defineComponent({
name: "OrderPopover",
props: ['item'],
computed: {
...mapGetters({
currentEComStore: 'user/getCurrentEComStore'
})
},
methods: {
async releaseItem (item: any) {
return this.store.dispatch("order/releaseItem", {
Expand Down
3 changes: 1 addition & 2 deletions src/views/orders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,7 @@ export default defineComponent({
selectedItemsToCancel: 'order.getSelectedItemsToCancel',
selectedItemsCount: 'order/getSelectedItemsCount',
userProfile: 'user/getUserProfile',
query: 'order/getQuery',
currentEComStore: 'user/getCurrentEComStore'
query: 'order/getQuery'
}),
},
async ionViewWillEnter() {
Expand Down

0 comments on commit 48e1f51

Please sign in to comment.