This commit is contained in:
insvrgent
2025-02-12 15:38:17 +07:00
parent e21e0f513f
commit 1512f8271d

View File

@@ -828,7 +828,7 @@ const ItemLister = ({
{itemsToCreate.map((item) => {
return !forCart || (forCart && item.qty > 0) ? (
<>
<div key={randomKey}>
{isEditItem == item.itemId && (
<ItemConfig
isBeingEdit={true}
@@ -912,7 +912,7 @@ const ItemLister = ({
}
/>
</div>
</>
</div>
) : null;
})}