Skip to content

Commit d9cfd6b

Browse files
committed
fix: 변경 사항에 맞춰 완료된 스토리 페이지 수정
1 parent 9b0ba24 commit d9cfd6b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

frontend/src/pages/backlog/FinishedStoryPage.tsx

+9-9
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ const FinishedStoryPage = () => {
3838
: 0;
3939

4040
return (
41-
<StoryBlock
42-
{...{ id, title, point, status }}
43-
epic={epic}
44-
progress={progress}
45-
taskExist={taskList.length > 0}
46-
epicList={epicCategoryList}
47-
finished={true}
48-
>
41+
<>
42+
<StoryBlock
43+
{...{ id, title, point, status }}
44+
epic={epic}
45+
progress={progress}
46+
taskExist={taskList.length > 0}
47+
epicList={epicCategoryList}
48+
/>
4949
{...taskList.map((task) => <TaskBlock {...task} />)}
50-
</StoryBlock>
50+
</>
5151
);
5252
})}
5353
</div>

0 commit comments

Comments
 (0)