From a6ee033cb60b6576f20d6662bec21b9066422b4d Mon Sep 17 00:00:00 2001 From: Shu Ding Date: Fri, 4 Jun 2021 16:59:14 +0200 Subject: [PATCH] fix type imports --- framework/shopify/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/shopify/index.tsx b/framework/shopify/index.tsx index 13ff9d1f8..46ed106c5 100644 --- a/framework/shopify/index.tsx +++ b/framework/shopify/index.tsx @@ -7,7 +7,8 @@ import { useCommerce as useCoreCommerce, } from '@commerce' -import { shopifyProvider, ShopifyProvider } from './provider' +import { shopifyProvider } from './provider' +import type { ShopifyProvider } from './provider' import { SHOPIFY_CHECKOUT_ID_COOKIE } from './const' export { shopifyProvider }