diff --git a/.changeset/long-poems-relax.md b/.changeset/long-poems-relax.md
new file mode 100644
index 0000000000..b45df2624a
--- /dev/null
+++ b/.changeset/long-poems-relax.md
@@ -0,0 +1,5 @@
+---
+'@udecode/plate-comments': major
+---
+
+Remove `useCommentValue`, which was redundant with the hooks applied automatically in `CommentEditTextarea.tsx`.
diff --git a/apps/www/src/registry/default/plate-ui/comment-more-dropdown.tsx b/apps/www/src/registry/default/plate-ui/comment-more-dropdown.tsx
index 04725db8a1..0a8ed2e55b 100644
--- a/apps/www/src/registry/default/plate-ui/comment-more-dropdown.tsx
+++ b/apps/www/src/registry/default/plate-ui/comment-more-dropdown.tsx
@@ -20,9 +20,9 @@ import {
export function CommentMoreDropdown() {
const editButtonState = useCommentEditButtonState();
- const editProps = useCommentEditButton(editButtonState);
+ const { props: editProps } = useCommentEditButton(editButtonState);
const deleteButtonState = useCommentDeleteButtonState();
- const deleteProps = useCommentDeleteButton(deleteButtonState);
+ const { props: deleteProps } = useCommentDeleteButton(deleteButtonState);
return (