In onDeleteItem method, sw-order-line-items-grid component calls this.$super('onConfirmDelete', item, itemIndex), skipping the original onDeleteItem logic of assigning the item.id to this.showDeleteModal. This results in a call to api/order-line-item/false endpoint (instead of calling api/order-line-item/{line-item-id}), which ends in 404.
How to reproduce:
- Create an order with any payment method other than RatePay
- Go to admin > order > view the order
- Try to remove an item from the order by using the actions dropdown

In
onDeleteItemmethod,sw-order-line-items-gridcomponent callsthis.$super('onConfirmDelete', item, itemIndex), skipping the originalonDeleteItemlogic of assigning theitem.idtothis.showDeleteModal. This results in a call toapi/order-line-item/falseendpoint (instead of callingapi/order-line-item/{line-item-id}), which ends in 404.How to reproduce: