diff --git a/com.twin.app.shoptime/src/views/HomePanel/PopularShow/PopularShow.jsx b/com.twin.app.shoptime/src/views/HomePanel/PopularShow/PopularShow.jsx index af840ab2..b599e823 100644 --- a/com.twin.app.shoptime/src/views/HomePanel/PopularShow/PopularShow.jsx +++ b/com.twin.app.shoptime/src/views/HomePanel/PopularShow/PopularShow.jsx @@ -12,7 +12,7 @@ import css from "../PopularShow/PopularShow.module.less"; const Container = SpotlightContainerDecorator( { enterTo: "last-focused" }, - "section" + "div" ); const SpottableComponent = Spottable("li"); diff --git a/com.twin.app.shoptime/src/views/HomePanel/SubCategory/SubCategory.jsx b/com.twin.app.shoptime/src/views/HomePanel/SubCategory/SubCategory.jsx index 2ac8cef3..06e6812b 100644 --- a/com.twin.app.shoptime/src/views/HomePanel/SubCategory/SubCategory.jsx +++ b/com.twin.app.shoptime/src/views/HomePanel/SubCategory/SubCategory.jsx @@ -19,7 +19,6 @@ const Container = SpotlightContainerDecorator( "div" ); -const SpottableComponent = Spottable("li"); const SubCategory = () => { const dispatch = useDispatch(); @@ -29,7 +28,6 @@ const SubCategory = () => { const subCategoryData = useSelector( (state) => state.main.subCategoryData.categoryItemInfos ); - const testchk = useSelector((state) => state); const [currentLgCatCd, setCurrentLgCatCd] = useState(); const handleCategoryNav = (lgCatCd) => { @@ -45,20 +43,10 @@ const SubCategory = () => { const initialLgCatCd = categoryInfos[0].lgCatCd; setCurrentLgCatCd(initialLgCatCd); } - getSubCategory({ - lgCatCd: currentLgCatCd, - patnrIdList: null, - pageSize: null, - tabType: "CAT00102", - filterType: "CAT00202", - }); }, []); useEffect(() => { if (currentLgCatCd) { - dispatch( - getOnSaleInfo({ categoryIncFlag: "Y", lgCatCd: currentLgCatCd }) - ); dispatch( getSubCategory({ lgCatCd: currentLgCatCd, @@ -79,7 +67,6 @@ const SubCategory = () => { onCategoryNavClick={handleCategoryNav} type="home" /> - {subCategoryData && subCategoryData.slice(0, 9).map((item) => {