diff --git a/frontend/src/Editor/Comment/CommentFooter.jsx b/frontend/src/Editor/Comment/CommentFooter.jsx
index 7b32759f0d..63a3bf8fde 100644
--- a/frontend/src/Editor/Comment/CommentFooter.jsx
+++ b/frontend/src/Editor/Comment/CommentFooter.jsx
@@ -7,7 +7,7 @@ import Button from '@/_ui/Button';
import useShortcuts from '@/_hooks/use-shortcuts';
import usePopover from '@/_hooks/use-popover';
-function CommentFooter({ editComment = '', editCommentId, handleSubmit }) {
+function CommentFooter({ users, editComment = '', editCommentId, handleSubmit }) {
const [comment, setComment] = React.useState(editComment);
const [loading, setLoading] = React.useState(false);
const [open, trigger, content, setOpen] = usePopover(false);
@@ -38,7 +38,12 @@ function CommentFooter({ editComment = '', editCommentId, handleSubmit }) {
-
+