Skip to content

Commit

Permalink
feat : 스터디 수정 시 화면 업데이트 되도록 수정 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
mun-kyeong authored Sep 27, 2024
1 parent 7195ad8 commit 9c2c0a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/team/[teamId]/study/[studyId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Page = ({ params }: { params: { teamId: number; studyId: number } }) => {
setDocumentArray(res.body.content);
}
});
}, [params.studyId]);
}, [params.studyId, isEditModalOpen]);

return (
<>
Expand Down

0 comments on commit 9c2c0a2

Please sign in to comment.