diff --git a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx index 043fce60..1bfeffe8 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx @@ -4,53 +4,50 @@ import React, { useMemo, useRef, useState, -} from 'react'; +} from "react"; -import { - useDispatch, - useSelector, -} from 'react-redux'; +import { useDispatch, useSelector } from "react-redux"; -import Spotlight from '@enact/spotlight'; +import Spotlight from "@enact/spotlight"; +import { setContainerLastFocusedElement } from "@enact/spotlight/src/container"; import { changeAppStatus, changeLocalSettings, setHidePopup, -} from '../../actions/commonActions'; -import { clearCouponInfo } from '../../actions/couponActions'; -import { setContainerLastFocusedElement } from "@enact/spotlight/src/container"; -import { getDeviceAdditionInfo } from '../../actions/deviceActions'; +} from "../../actions/commonActions"; +import { clearCouponInfo } from "../../actions/couponActions"; +import { getDeviceAdditionInfo } from "../../actions/deviceActions"; import { clearThemeDetail, getThemeCurationDetailInfo, getThemeHotelDetailInfo, -} from '../../actions/homeActions'; +} from "../../actions/homeActions"; import { getMainCategoryDetail, getMainYouMayLike, -} from '../../actions/mainActions'; -import { popPanel } from '../../actions/panelActions'; -import { finishVideoPreview } from '../../actions/playActions'; +} from "../../actions/mainActions"; +import { popPanel } from "../../actions/panelActions"; +import { finishVideoPreview } from "../../actions/playActions"; import { clearProductDetail, getProductGroup, getProductImageLength, getProductOptionId, -} from '../../actions/productActions'; -import MobileSendPopUp from '../../components/MobileSend/MobileSendPopUp'; -import TBody from '../../components/TBody/TBody'; -import THeader from '../../components/THeader/THeader'; -import TPanel from '../../components/TPanel/TPanel'; -import * as Config from '../../utils/Config'; -import { panel_names } from '../../utils/Config'; -import { $L } from '../../utils/helperMethods'; -import css from './DetailPanel.module.less'; -import GroupProduct from './GroupProduct/GroupProduct'; -import SingleProduct from './SingleProduct/SingleProduct'; -import ThemeProduct from './ThemeProduct/ThemeProduct'; -import UnableProduct from './UnableProduct/UnableProduct'; -import YouMayLike from './YouMayLike/YouMayLike'; +} from "../../actions/productActions"; +import MobileSendPopUp from "../../components/MobileSend/MobileSendPopUp"; +import TBody from "../../components/TBody/TBody"; +import THeader from "../../components/THeader/THeader"; +import TPanel from "../../components/TPanel/TPanel"; +import * as Config from "../../utils/Config"; +import { panel_names } from "../../utils/Config"; +import { $L } from "../../utils/helperMethods"; +import css from "./DetailPanel.module.less"; +import GroupProduct from "./GroupProduct/GroupProduct"; +import SingleProduct from "./SingleProduct/SingleProduct"; +import ThemeProduct from "./ThemeProduct/ThemeProduct"; +import UnableProduct from "./UnableProduct/UnableProduct"; +import YouMayLike from "./YouMayLike/YouMayLike"; export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) { const dispatch = useDispatch(); @@ -378,7 +375,6 @@ export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) { dispatch(clearProductDetail()); dispatch(clearThemeDetail()); dispatch(clearCouponInfo()); - //[SHOPTIME-3445] setContainerLastFocusedElement(null, ["indicator-GridListContainer"]); }; }, [dispatch]);