Skip to content

Commit 9b0ba24

Browse files
committed
fix: 변경된 형식에 맞게 에픽 페이지 구조 변경
1 parent 9c20251 commit 9b0ba24

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

frontend/src/pages/backlog/EpicPage.tsx

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,15 @@ const EpicPage = () => {
4040
: 0;
4141

4242
return (
43-
<StoryBlock
44-
{...{ id, title, point, status }}
45-
epic={{ id: epicId, name, color, rankValue }}
46-
progress={progress}
47-
taskExist={taskList.length > 0}
48-
lastTaskRankValue={
49-
taskList.length
50-
? taskList[taskList.length - 1].rankValue
51-
: undefined
52-
}
53-
>
43+
<>
44+
<StoryBlock
45+
{...{ id, title, point, status }}
46+
epic={{ id: epicId, name, color, rankValue }}
47+
progress={progress}
48+
taskExist={taskList.length > 0}
49+
/>
5450
{...taskList.map((task) => <TaskBlock {...task} />)}
55-
</StoryBlock>
51+
</>
5652
);
5753
})}
5854
{showDetail ? (

0 commit comments

Comments
 (0)