mirror of
https://github.com/vercel/commerce.git
synced 2025-03-31 09:15:53 +00:00
* Start of Shopify provider * add missing comment to documentation * add missing env vars to documentation * update reference to types file
18 lines
434 B
TypeScript
18 lines
434 B
TypeScript
import { useCallback } from 'react'
|
|
import { useCommerce } from '../index'
|
|
|
|
const useRemoveItem = () => {
|
|
const { checkout, client, updateCheckout } = useCommerce()
|
|
|
|
return useCallback(
|
|
async function removeItem({ id }: { id: string }) {
|
|
const cart = await client?.checkout.removeLineItems(checkout.id, [id])
|
|
updateCheckout(cart)
|
|
return cart
|
|
},
|
|
[checkout, client]
|
|
)
|
|
}
|
|
|
|
export default useRemoveItem
|