Allow cart view to remove the item

This commit is contained in:
Luis Alvarez
2020-10-07 11:19:50 -05:00
parent 5e999920d2
commit 63e8f431d8
2 changed files with 8 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ export type { ItemBody, RemoveItemBody }
function fetcher(fetch: Fetcher<Cart>, { itemId }: RemoveItemBody) {
return fetch({
url: '/api/bigcommerce/cart',
method: 'POST',
method: 'DELETE',
body: { itemId },
})
}