diff --git a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx index a2f3d987..8c1092a1 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx @@ -1,21 +1,40 @@ // src/views/DetailPanel/DetailPanel.new.jsx -import React, { useCallback, useEffect, useLayoutEffect, useMemo, useRef, useState } from 'react'; +import React, { + useCallback, + useEffect, + useLayoutEffect, + useMemo, + useRef, + useState, +} from 'react'; -import { useDispatch, useSelector } from 'react-redux'; +import { + useDispatch, + useSelector, +} from 'react-redux'; import Spotlight from '@enact/spotlight'; import { setContainerLastFocusedElement } from '@enact/spotlight/src/container'; import { getDeviceAdditionInfo } from '../../actions/deviceActions'; import { getThemeCurationDetailInfo } from '../../actions/homeActions'; -import { getMainCategoryDetail, getMainYouMayLike } from '../../actions/mainActions'; -import { popPanel, updatePanel } from '../../actions/panelActions'; +import { + getMainCategoryDetail, + getMainYouMayLike, +} from '../../actions/mainActions'; +import { + popPanel, + updatePanel, +} from '../../actions/panelActions'; import { finishVideoPreview, pauseFullscreenVideo, resumeFullscreenVideo, } from '../../actions/playActions'; -import { clearProductDetail, getProductOptionId } from '../../actions/productActions'; +import { + clearProductDetail, + getProductOptionId, +} from '../../actions/productActions'; import TBody from '../../components/TBody/TBody'; import TPanel from '../../components/TPanel/TPanel'; import { panel_names } from '../../utils/Config'; @@ -667,6 +686,7 @@ export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) { onSpotlightLeft={onSpotlightUpTButton} marqueeDisabled={false} ariaLabel={ariaLabel} + logoImg={productData?.patncLogoPath} />
-