Skip to content

Commit

Permalink
fix: 변경 사항에 맞춰 완료된 스토리 페이지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
surinkwon committed Aug 13, 2024
1 parent 9b0ba24 commit d9cfd6b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions frontend/src/pages/backlog/FinishedStoryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ const FinishedStoryPage = () => {
: 0;

return (
<StoryBlock
{...{ id, title, point, status }}
epic={epic}
progress={progress}
taskExist={taskList.length > 0}
epicList={epicCategoryList}
finished={true}
>
<>
<StoryBlock
{...{ id, title, point, status }}
epic={epic}
progress={progress}
taskExist={taskList.length > 0}
epicList={epicCategoryList}
/>
{...taskList.map((task) => <TaskBlock {...task} />)}
</StoryBlock>
</>
);
})}
</div>
Expand Down

0 comments on commit d9cfd6b

Please sign in to comment.