aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comments-list.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/comments-list.tsx')
-rw-r--r--src/components/organisms/layout/comments-list.tsx15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/components/organisms/layout/comments-list.tsx b/src/components/organisms/layout/comments-list.tsx
index af0152a..2d43583 100644
--- a/src/components/organisms/layout/comments-list.tsx
+++ b/src/components/organisms/layout/comments-list.tsx
@@ -6,10 +6,7 @@ import { UserComment, type UserCommentProps } from './comment';
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
export type CommentsListDepth = 0 | 1 | 2 | 3 | 4;
-export type CommentsListProps = Pick<
- UserCommentProps,
- 'Notice' | 'saveComment'
-> & {
+export type CommentsListProps = Pick<UserCommentProps, 'onSubmit'> & {
/**
* An array of comments.
*/
@@ -28,8 +25,7 @@ export type CommentsListProps = Pick<
export const CommentsList: FC<CommentsListProps> = ({
comments,
depth,
- Notice,
- saveComment,
+ onSubmit,
}) => {
/**
* Get each comment wrapped in a list item.
@@ -45,12 +41,7 @@ export const CommentsList: FC<CommentsListProps> = ({
return commentsList.map(({ replies, ...comment }) => (
<ListItem key={comment.id}>
- <UserComment
- canReply={!isLastLevel}
- Notice={Notice}
- saveComment={saveComment}
- {...comment}
- />
+ <UserComment canReply={!isLastLevel} onSubmit={onSubmit} {...comment} />
{replies.length && !isLastLevel ? (
<List hideMarker isOrdered spacing="sm">
{getItems(replies, startLevel + 1)}