diff --git a/estore/src/components/ProductCard.tsx b/estore/src/components/ProductCard.tsx index 4f0b6a7..92f8637 100644 --- a/estore/src/components/ProductCard.tsx +++ b/estore/src/components/ProductCard.tsx @@ -31,7 +31,7 @@ export default function ProductCard({ item }: Props) { : null const { soldOut, lowStock, lowestAvailable: stock } = stockStats(item) - const isBouquetBuilder = item.tags.includes('bouquet-builder') + const isBouquetBuilder = item.name.toLowerCase().startsWith('build your') const priceDisplay = item.price ? `From ${fmt(item.price)}` : 'Custom quote'