diff --git a/dashboard/src/components/dashboard/ProductGrid.jsx b/dashboard/src/components/dashboard/ProductGrid.jsx index 83e60bc..4b4b486 100644 --- a/dashboard/src/components/dashboard/ProductGrid.jsx +++ b/dashboard/src/components/dashboard/ProductGrid.jsx @@ -424,7 +424,7 @@ const ProductGrid = ({ className="hover:bg-muted/50 transition-colors" > {columnVisibility.image && ( - + {product.ImgThumb && ( )} {columnVisibility.name && ( - +
{product.name} -
)} {columnVisibility.totalQuantity && ( - + {product.totalQuantity} )} {columnVisibility.totalRevenue && ( - + ${product.totalRevenue.toFixed(2)} )} {columnVisibility.orderCount && ( - + {product.orderCount} )} {columnVisibility.price && ( - + ${product.price.toFixed(2)} )}