diff --git a/src/app/user/[userId]/_components/Card.tsx b/src/app/user/[userId]/_components/Card.tsx
index 530c850a..af4563de 100644
--- a/src/app/user/[userId]/_components/Card.tsx
+++ b/src/app/user/[userId]/_components/Card.tsx
@@ -36,7 +36,7 @@ export default function Card({ list, isOwner }: CardProps) {
{list.listItems.map((item) => (
- {item.ranking}
+ {item.rank}
{'.'}
{item.title}
diff --git a/src/lib/types/listType.ts b/src/lib/types/listType.ts
index dcfd1ce6..0d67f4b8 100644
--- a/src/lib/types/listType.ts
+++ b/src/lib/types/listType.ts
@@ -81,6 +81,7 @@ export interface ListDetailType {
collectCount: number;
viewCount: number;
}
+
// 리스트 전체 조회 타입
export interface AllListType {
cursorId: number;
@@ -98,9 +99,9 @@ export interface ListType {
export interface ItemType {
id: number;
- ranking: number;
+ rank: number;
title: string;
- comment?: string;
- link?: string;
+ comment?: string; // 리스트 상세조회 타입에서 사용할때는 optional 여부 확인하기
+ link?: string; // 리스트 상세조회 타입에서 사용할때는 optional 여부 확인하기
imageUrl?: string;
}