diff --git a/src/components/Product/SingleProduct.component.tsx b/src/components/Product/SingleProduct.component.tsx index 3affb3e41..c9c063f45 100644 --- a/src/components/Product/SingleProduct.component.tsx +++ b/src/components/Product/SingleProduct.component.tsx @@ -160,29 +160,3 @@ const SingleProduct = ({ product }: IProductRootObject) => { }; export default SingleProduct; - -// Types (if needed separately) -interface IProduct { - id: string; - databaseId: number; - name: string; - description: string; - price: string; - regularPrice: string; - salePrice: string; - onSale: boolean; - image: { - sourceUrl: string; - }; - stockQuantity: number; - variations?: { - nodes: Array<{ - id: string; - databaseId: number; - name: string; - stockQuantity: number; - }>; - }; -} - -