aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/templates/page/page-comments.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/components/templates/page/page-comments.tsx b/src/components/templates/page/page-comments.tsx
index 170d6b7..5f5208f 100644
--- a/src/components/templates/page/page-comments.tsx
+++ b/src/components/templates/page/page-comments.tsx
@@ -6,8 +6,10 @@ import {
useCallback,
} from 'react';
import { useIntl } from 'react-intl';
-import { sendComment } from '../../../services/graphql';
-import type { SendCommentInput } from '../../../types';
+import {
+ createComment,
+ type CreateCommentInput,
+} from '../../../services/graphql';
import { Heading, Link, Section } from '../../atoms';
import { Card, CardBody } from '../../molecules';
import {
@@ -99,7 +101,7 @@ const PageCommentsWithRef: ForwardRefRenderFunction<
const saveComment: CommentFormSubmit = useCallback(
async (data) => {
- const commentData: SendCommentInput = {
+ const commentData: CreateCommentInput = {
author: data.author,
authorEmail: data.email,
authorUrl: data.website ?? '',
@@ -108,7 +110,7 @@ const PageCommentsWithRef: ForwardRefRenderFunction<
content: data.comment,
parent: data.parentId,
};
- const { comment, success } = await sendComment(commentData);
+ const { comment, success } = await createComment(commentData);
const successPrefix = intl.formatMessage({
defaultMessage: 'Thanks, your comment was successfully sent.',
description: 'PageComments: comment form success message',