mirror of
https://github.com/makeplane/plane.git
synced 2026-02-19 21:29:48 -06:00
fix: comment reaction mutation (#1768)
This commit is contained in:
@@ -70,7 +70,8 @@ const useCommentReaction = (
|
||||
|
||||
mutateCommentReactions(
|
||||
(prevData) =>
|
||||
prevData?.filter((r) => r.actor !== user?.user?.id || r.reaction !== reaction) || []
|
||||
prevData?.filter((r) => r.actor !== user?.user?.id || r.reaction !== reaction) || [],
|
||||
false
|
||||
);
|
||||
|
||||
await reactionService.deleteIssueCommentReaction(
|
||||
|
||||
Reference in New Issue
Block a user