Fixed type

This commit is contained in:
Luis Alvarez 2020-10-26 19:04:51 -05:00
parent 3c45f254da
commit 008c80766a

View File

@ -5,7 +5,7 @@ import useRemoveItem from './use-remove-item'
// to show how a commerce should be structuring it
export default function useWishlistActions() {
const addItem = useAddItem()
const removeItem = useRemoveItem('')
const removeItem = useRemoveItem()
return { addItem, removeItem }
}