[홈] 포유 아이콘 노출 제거

- 포유 조건 바뀜에 따라 우선 노출 제거
This commit is contained in:
junghoon86.park
2025-11-07 14:02:45 +09:00
parent a732b55905
commit 0c507d5818
3 changed files with 11 additions and 9 deletions

View File

@@ -20,7 +20,9 @@ import {
pushPanel,
updatePanel,
} from '../../../actions/panelActions';
import { navigateToDetailFromHome } from '../../../actions/panelNavigationActions';
import {
navigateToDetailFromHome,
} from '../../../actions/panelNavigationActions';
import SectionTitle from '../../../components/SectionTitle/SectionTitle';
import Tag from '../../../components/TItemCard/Tag';
import TItemCard from '../../../components/TItemCard/TItemCard';
@@ -186,7 +188,7 @@ const BestSeller = ({
setBestSellerNewData(
bestSellerDatas?.map((item) => ({
...item,
foryou: _randomProduct(),
// foryou: _randomProduct(),
}))
);
}, [bestSellerDatas]);
@@ -225,7 +227,7 @@ const BestSeller = ({
brndNm,
patncNm,
catNm,
foryou,
//foryou,
euEnrgLblInfos,
},
itemIndex
@@ -267,7 +269,7 @@ const BestSeller = ({
lastLabel=" go to detail, button"
euEnrgLblInfos={euEnrgLblInfos}
>
{foryou === true && <Tag text={"For You"} />}
{/* {foryou === true && <Tag text={"For You"} />} */}
</TItemCardNew>
);
}