diff --git a/packages/react-shopper-hooks/src/cart/hooks/use-delete-cart-items.ts b/packages/react-shopper-hooks/src/cart/hooks/use-delete-cart-items.ts index d75db1f9..7b69007f 100644 --- a/packages/react-shopper-hooks/src/cart/hooks/use-delete-cart-items.ts +++ b/packages/react-shopper-hooks/src/cart/hooks/use-delete-cart-items.ts @@ -2,15 +2,9 @@ import { useMutation, UseMutationOptions } from "@tanstack/react-query" import { useElasticPath } from "../../elasticpath" import { CartItemsResponse } from "@moltin/sdk" -type CartDeleteCartItemsReq = {} - export const useDeleteCartItems = ( cartId: string, - options?: UseMutationOptions< - CartItemsResponse, - Error, - CartDeleteCartItemsReq - >, + options?: UseMutationOptions, ) => { const { client } = useElasticPath() return useMutation({