diff --git a/com.twin.app.shoptime/src/views/HomePanel/BestSeller/BestSeller.jsx b/com.twin.app.shoptime/src/views/HomePanel/BestSeller/BestSeller.jsx index d469be68..945006f2 100644 --- a/com.twin.app.shoptime/src/views/HomePanel/BestSeller/BestSeller.jsx +++ b/com.twin.app.shoptime/src/views/HomePanel/BestSeller/BestSeller.jsx @@ -1,20 +1,36 @@ -import React, { useCallback, useEffect, useMemo, useState } from "react"; +import React, { + useCallback, + useEffect, + useMemo, + useState, +} from 'react'; -import { useDispatch, useSelector } from "react-redux"; +import { + useDispatch, + useSelector, +} from 'react-redux'; -import Spotlight from "@enact/spotlight"; -import { SpotlightContainerDecorator } from "@enact/spotlight/SpotlightContainerDecorator"; -import Spottable from "@enact/spotlight/Spottable"; +import Spotlight from '@enact/spotlight'; +import { + SpotlightContainerDecorator, +} from '@enact/spotlight/SpotlightContainerDecorator'; +import Spottable from '@enact/spotlight/Spottable'; -import { pushPanel, updatePanel } from "../../../actions/panelActions"; -import SectionTitle from "../../../components/SectionTitle/SectionTitle"; -import TItemCard from "../../../components/TItemCard/TItemCard"; -import TScroller from "../../../components/TScroller/TScroller"; -import useScrollReset from "../../../hooks/useScrollReset"; -import useScrollTo from "../../../hooks/useScrollTo"; -import { panel_names } from "../../../utils/Config"; -import { $L, scaleW } from "../../../utils/helperMethods"; -import css from "./BestSeller.module.less"; +import { + pushPanel, + updatePanel, +} from '../../../actions/panelActions'; +import SectionTitle from '../../../components/SectionTitle/SectionTitle'; +import TItemCard from '../../../components/TItemCard/TItemCard'; +import TScroller from '../../../components/TScroller/TScroller'; +import useScrollReset from '../../../hooks/useScrollReset'; +import useScrollTo from '../../../hooks/useScrollTo'; +import { panel_names } from '../../../utils/Config'; +import { + $L, + scaleW, +} from '../../../utils/helperMethods'; +import css from './BestSeller.module.less'; const SpottableComponent = Spottable("div"); const Container = SpotlightContainerDecorator( @@ -118,6 +134,7 @@ const BestSeller = ({ order, scrollTopBody, spotlightId, handleItemFocus }) => {