feat: Update ComparisonScene to display selected product name in dropdown header and add console log for products in TriggerDuplicate

This commit is contained in:
Jerald-Golden-B 2025-06-13 17:45:45 +05:30
parent f8bcc5aa1c
commit 48c62c9189
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ function ComparisonScene() {
{comparisonProduct && !isPlaying && {comparisonProduct && !isPlaying &&
<div className="initial-selectLayout-wrapper"> <div className="initial-selectLayout-wrapper">
<RegularDropDown <RegularDropDown
header={'Product 1'} header={selectedProduct.productName}
options={products.map((l) => l.productName)} // Pass layout names as options options={products.map((l) => l.productName)} // Pass layout names as options
onSelect={handleSelectLayout} onSelect={handleSelectLayout}
search={false} search={false}