diff --git a/inventory/src/components/dashboard/TopReplenishProducts.tsx b/inventory/src/components/dashboard/TopReplenishProducts.tsx index ad8afd5..9597596 100644 --- a/inventory/src/components/dashboard/TopReplenishProducts.tsx +++ b/inventory/src/components/dashboard/TopReplenishProducts.tsx @@ -13,7 +13,6 @@ interface ReplenishProduct { replenish_qty: number replenish_cost: number replenish_retail: number - days_until_stockout: number | null } export function TopReplenishProducts() { @@ -39,10 +38,10 @@ export function TopReplenishProducts() { Product - Current + Stock Replenish Cost - Days + Retail @@ -64,7 +63,7 @@ export function TopReplenishProducts() { {formatCurrency(product.replenish_cost)} - {product.days_until_stockout ?? "N/A"} + {formatCurrency(product.replenish_retail)} ))}