diff --git a/src/components/my-request/MyRequestListCard.vue b/src/components/my-request/MyRequestListCard.vue index 5f0c200..47baf10 100644 --- a/src/components/my-request/MyRequestListCard.vue +++ b/src/components/my-request/MyRequestListCard.vue @@ -47,7 +47,7 @@ const myRequestTabList: ListCardProps[] = [ { content: info.mainCategoryName, width: 80 }, { content: info.categoryName, width: 80 }, { content: info.title }, - { content: info.processorName, width: 120, profileImg: info.processorImg || '' }, + { content: info.processorName, width: 120, profileImg: info.processorUrl || '' }, { content: info.taskStatus, width: 80, isStatus: true }, { content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 } ] diff --git a/src/types/user.ts b/src/types/user.ts index 35d8d7a..11d20eb 100644 --- a/src/types/user.ts +++ b/src/types/user.ts @@ -8,7 +8,7 @@ export interface MyRequestListData { mainCategoryName: string categoryName: string title: string - processorImg?: string + processorUrl?: string processorName?: string taskStatus: Status finishedAt?: string