diff --git a/src/locales/en.json b/src/locales/en.json
index 3c5d054d..7f8859dd 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -23,7 +23,6 @@
   "inventory variance": "inventory variance", 
   "Instance Url": "Instance Url",
   "Item added to upload list": "Item added to upload list",
-  "Item removed successfully":"Item removed successfully",
   "Loading": "Loading",
   "Location": "Location",
   "Log variance": "Log variance",
@@ -75,5 +74,4 @@
   "Variance updated successfully": "Variance updated successfully",
   "View": "View",
   "You do not have permission to access this page": "You do not have permission to access this page"
-  
 }
\ No newline at end of file
diff --git a/src/store/modules/product/actions.ts b/src/store/modules/product/actions.ts
index 889c87b4..926755de 100644
--- a/src/store/modules/product/actions.ts
+++ b/src/store/modules/product/actions.ts
@@ -48,7 +48,6 @@ const actions: ActionTree<ProductState, RootState> = {
 
   async removeItemFromUploadProducts( {commit}, payload) {
     commit(types.PRODUCT_REMOVE_FROM_UPLD_PRDTS, {sku: payload});
-    showToast(translate("Item removed successfully"));
   },
 
   async clearUploadProducts ({ commit }) {
diff --git a/src/views/Upload.vue b/src/views/Upload.vue
index 046bca02..1f0ed1bc 100644
--- a/src/views/Upload.vue
+++ b/src/views/Upload.vue
@@ -71,7 +71,7 @@ import { colorPaletteOutline, resize, cloudUploadOutline } from 'ionicons/icons'
 import { mapGetters, useStore } from 'vuex';
 import { useRouter } from 'vue-router';
 import { ShopifyImg } from '@hotwax/dxp-components';
-import { Actions, hasPermission } from '@/authorization'
+  import { Actions, hasPermission } from '@/authorization'
 
 export default defineComponent({
   name: "Upload",