[디테일 리뷰] 버튼 주석처리

- 버튼 주석처리
This commit is contained in:
junghoon86.park
2025-10-31 13:07:13 +09:00
parent 240ffa889e
commit f7240dbef7

View File

@@ -1,9 +1,19 @@
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
import React, {
useCallback,
useEffect,
useMemo,
useRef,
useState,
} from 'react';
import classNames from 'classnames';
import { useDispatch, useSelector } from 'react-redux';
import {
useDispatch,
useSelector,
} from 'react-redux';
import SpotlightContainerDecorator from '@enact/spotlight/SpotlightContainerDecorator';
import SpotlightContainerDecorator
from '@enact/spotlight/SpotlightContainerDecorator';
import Spottable from '@enact/spotlight/Spottable';
import { toggleShowAllReviews } from '../../../../actions/productActions';
@@ -12,7 +22,8 @@ import useScrollTo from '../../../../hooks/useScrollTo';
import { $L } from '../../../../utils/helperMethods';
import StarRating from '../../components/StarRating';
import THeaderDetail from '../../components/THeaderDetail';
import UserReviewsScroller from '../../components/UserReviewsScroller/UserReviewsScroller';
import UserReviewsScroller
from '../../components/UserReviewsScroller/UserReviewsScroller';
import CustomerImages from './CustomerImages/CustomerImages';
import css from './UserReviews.module.less';
import UserReviewsPopup from './UserReviewsPopup/UserReviewsPopup';
@@ -314,7 +325,7 @@ export default function UserReviews({ productInfo, panelInfo, reviewsData }) {
</SpottableComponent>
);
})}
{/* View All Reviews Button - 선택적으로 표시 */}
{/* View All Reviews Button - 선택적으로 표시
{reviewTotalCount > 5 && !showAllReviews && (
<div className={css.viewAllReviewsSection}>
<Spottable
@@ -330,7 +341,7 @@ export default function UserReviews({ productInfo, panelInfo, reviewsData }) {
</div>
</Spottable>
</div>
)}
)} */}
</div>
</UserReviewsScroller>