From f1105c72c9d10981f0a769376f2c482b71c74fd4 Mon Sep 17 00:00:00 2001 From: Bel Curcio Date: Fri, 28 May 2021 18:42:01 -0300 Subject: [PATCH] Improved Categories --- framework/bigcommerce/common/get-site-info.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/framework/bigcommerce/common/get-site-info.ts b/framework/bigcommerce/common/get-site-info.ts index 26dc08092..a39608d38 100644 --- a/framework/bigcommerce/common/get-site-info.ts +++ b/framework/bigcommerce/common/get-site-info.ts @@ -5,7 +5,6 @@ import { BigcommerceConfig, getConfig } from '../api' import { categoryTreeItemFragment } from '../api/fragments/category-tree' import { Category } from '@commerce/types' import getSlug from '@lib/get-slug' -import { CategoryTreeItem } from '@framework/schema' // Get 3 levels of categories export const getSiteInfoQuery = /* GraphQL */ ` @@ -51,8 +50,6 @@ export type CategoriesTree = NonNullable< GetSiteInfoQuery['site']['categoryTree'] > -export type CategoryItem = Pick - export type BrandEdge = NonNullable< NonNullable[0] >