diff --git a/components/product/ProductCard/ProductCard.tsx b/components/product/ProductCard/ProductCard.tsx index 4d68a9d34..80ebd178c 100644 --- a/components/product/ProductCard/ProductCard.tsx +++ b/components/product/ProductCard/ProductCard.tsx @@ -16,7 +16,6 @@ interface ProductData { const ProductCard: FC = ({ className, productData }) => { const rootClassName = cn(s.root, className) - console.log(productData) return (
{/* Overlay */} diff --git a/pages/index.tsx b/pages/index.tsx index cf117da5b..c89c02ce6 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,5 +1,5 @@ import { GetStaticPropsContext, InferGetStaticPropsType } from 'next' -import getAllProducts from 'lib/bigcommerce/api/operations/get-all-products' +import getAllProducts from '@lib/bigcommerce/api/operations/get-all-products' import { Layout } from '@components/core' import { ProductGrid } from '@components/product'