From 718493a6f8e8c9f3a4265c3b0048f7c0e88aa114 Mon Sep 17 00:00:00 2001 From: tniezg Date: Wed, 18 Aug 2021 18:17:02 +0200 Subject: [PATCH] Remove outdated comments --- framework/spree/provider.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/framework/spree/provider.ts b/framework/spree/provider.ts index 3a96f456d..d6511bd36 100644 --- a/framework/spree/provider.ts +++ b/framework/spree/provider.ts @@ -1,7 +1,6 @@ import type { Provider } from '@commerce' import fetcher from './fetcher' -// TODO: Using dummy hooks to fetch static content. Based on the local framework. import { handler as useCart } from './cart/use-cart' import { handler as useAddItem } from './cart/use-add-item' import { handler as useUpdateItem } from './cart/use-update-item' @@ -16,7 +15,6 @@ const provider = { locale: '', // Not an optional key in TypeScript, but already set in config. So, just make it an empty string. cartCookie: '', // Not an optional key in TypeScript, but already set in config. So, just make it an empty string. fetcher, - // FIXME: Add dummy hooks for below based on framework/local EXCEPT use-product cart: { useCart, useAddItem, useUpdateItem, useRemoveItem }, customer: { useCustomer }, products: { useSearch },