[컴포넌트] 대소문자 잘못들어간부분 수정

This commit is contained in:
junghoon86.park
2025-10-02 16:07:09 +09:00
parent 82b6ae7c87
commit b22f519c3d
3 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ import {
import SectionTitle from '../../../components/SectionTitle/SectionTitle'; import SectionTitle from '../../../components/SectionTitle/SectionTitle';
import Tag from '../../../components/TItemCard/Tag'; import Tag from '../../../components/TItemCard/Tag';
import TItemCard from '../../../components/TItemCard/TItemCard'; import TItemCard from '../../../components/TItemCard/TItemCard';
import TitemCardNew from '../../../components/TItemCard/TitemCard.new'; import TItemCardNew from '../../../components/TItemCard/TItemCard.new';
import TScroller from '../../../components/TScroller/TScroller'; import TScroller from '../../../components/TScroller/TScroller';
import useScrollReset from '../../../hooks/useScrollReset'; import useScrollReset from '../../../hooks/useScrollReset';
import useScrollTo from '../../../hooks/useScrollTo'; import useScrollTo from '../../../hooks/useScrollTo';
@@ -241,7 +241,7 @@ const BestSeller = ({
? rankOrd + "rd" ? rankOrd + "rd"
: rankOrd + "th"; : rankOrd + "th";
return ( return (
<TitemCardNew <TItemCardNew
key={"subItem" + itemIndex} key={"subItem" + itemIndex}
contextName={LOG_CONTEXT_NAME.HOME} contextName={LOG_CONTEXT_NAME.HOME}
messageId={LOG_MESSAGE_ID.SHELF_CLICK} messageId={LOG_MESSAGE_ID.SHELF_CLICK}
@@ -269,7 +269,7 @@ const BestSeller = ({
lastLabel=" go to detail, button" lastLabel=" go to detail, button"
> >
{foryou === true && <Tag text={"For You"} />} {foryou === true && <Tag text={"For You"} />}
</TitemCardNew> </TItemCardNew>
); );
} }
)} )}

View File

@@ -26,7 +26,7 @@ import TItemCard, {
IMAGETYPES, IMAGETYPES,
TYPES, TYPES,
} from '../../../components/TItemCard/TItemCard'; } from '../../../components/TItemCard/TItemCard';
import TitemCardNew from '../../../components/TItemCard/TitemCard.new'; import TItemCardNew from '../../../components/TItemCard/TItemCard.new';
import TScroller from '../../../components/TScroller/TScroller'; import TScroller from '../../../components/TScroller/TScroller';
import useScrollReset from '../../../hooks/useScrollReset'; import useScrollReset from '../../../hooks/useScrollReset';
import useScrollTo from '../../../hooks/useScrollTo'; import useScrollTo from '../../../hooks/useScrollTo';
@@ -245,7 +245,7 @@ const PopularShow = ({
itemIndex itemIndex
) => { ) => {
return ( return (
<TitemCardNew <TItemCardNew
key={showId} key={showId}
contextName={LOG_CONTEXT_NAME.HOME} contextName={LOG_CONTEXT_NAME.HOME}
messageId={LOG_MESSAGE_ID.SHELF_CLICK} messageId={LOG_MESSAGE_ID.SHELF_CLICK}
@@ -281,7 +281,7 @@ const PopularShow = ({
lastLabel=" go to detail, button" lastLabel=" go to detail, button"
> >
{foryou === true && <Tag text={"For You"} />} {foryou === true && <Tag text={"For You"} />}
</TitemCardNew> </TItemCardNew>
); );
} }
)} )}

View File

@@ -21,7 +21,7 @@ import { sendLogCuration } from '../../../actions/logActions';
import { getSubCategory } from '../../../actions/mainActions'; import { getSubCategory } from '../../../actions/mainActions';
import { pushPanel } from '../../../actions/panelActions'; import { pushPanel } from '../../../actions/panelActions';
import Tag from '../../../components/TItemCard/Tag'; import Tag from '../../../components/TItemCard/Tag';
import TItemCardNew from '../../../components/TItemCard/TitemCard.new'; import TItemCardNew from '../../../components/TItemCard/TItemCard.new';
import TScroller from '../../../components/TScroller/TScroller'; import TScroller from '../../../components/TScroller/TScroller';
import usePrevious from '../../../hooks/usePrevious'; import usePrevious from '../../../hooks/usePrevious';
import useScrollReset from '../../../hooks/useScrollReset'; import useScrollReset from '../../../hooks/useScrollReset';