diff --git a/src/components/PromotionAdmin/Artwork/ArtworkSequence/ArtworkSequence.tsx b/src/components/PromotionAdmin/Artwork/ArtworkSequence/ArtworkSequence.tsx index b968079..2057fef 100644 --- a/src/components/PromotionAdmin/Artwork/ArtworkSequence/ArtworkSequence.tsx +++ b/src/components/PromotionAdmin/Artwork/ArtworkSequence/ArtworkSequence.tsx @@ -151,8 +151,7 @@ const ArtworkSequence = ({ type, data, isLoading, error, refetch }: ArtworkSeque ) : onEdit ? ( {type === 'main' //main sequence면 top 고정 - ? realData - ?.filter((i) => i.projectType === 'top') + ? data?.filter((i) => i.projectType === 'top') .map((i) => (
@@ -183,8 +182,7 @@ const ArtworkSequence = ({ type, data, isLoading, error, refetch }: ArtworkSeque
{/*edit 모드 아니면 일반 리스트*/} {type === 'main' //main sequence면 top 고정 - ? realData - ?.filter((i) => i.projectType === 'top') + ? data?.filter((i) => i.projectType === 'top') .map((i) => (