Skip to content

Commit

Permalink
Fix: 댓글 삭제 (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzi-0 authored Jul 4, 2023
1 parent 8691434 commit e556b18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/domain/comment/comment.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const updateReplyId = (
};
return {
...page,
data: updatedData,
...updatedData,
};
});

Expand All @@ -207,7 +207,7 @@ export const removeCommentToPages = (
};
return {
...page,
data: updatedData,
...updatedData,
};
});

Expand Down Expand Up @@ -243,7 +243,7 @@ export const removeReplyToPages = (
};
return {
...page,
data: updatedData,
...updatedData,
};
});

Expand Down

0 comments on commit e556b18

Please sign in to comment.