Skip to content

Commit

Permalink
🐛fix: section props 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
heejung0413 committed Aug 15, 2024
1 parent d649143 commit f498da9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const TeamTaskMessage: FC<Props> = ({ section, setRendering, user, teamId }) =>

const handlePostComment = async () => {
setIsDisabled(true);

try {
await CommentService.post({ sectionId: section.sectionId, commentContent: value });
setTimeout(() => setIsDisabled(false), 1500);
Expand Down Expand Up @@ -130,7 +131,7 @@ const TeamTaskMessage: FC<Props> = ({ section, setRendering, user, teamId }) =>
</S.TaskUserProfile>
{user.userName === section.username && (
<>
<ReviseCommentModal comment={section} setRendering={setRendering} section={section} />
<ReviseCommentModal comment={section} setRendering={setRendering} />
<DeleteData
value="댓글"
handleDeleteValue={() => {
Expand Down

0 comments on commit f498da9

Please sign in to comment.