From c347190a4307c172d15dac156da86567098035f6 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 24 May 2022 16:18:02 +0200 Subject: test: fix theme toggle and comment tests --- src/components/organisms/layout/comment.tsx | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) (limited to 'src/components/organisms/layout/comment.tsx') diff --git a/src/components/organisms/layout/comment.tsx b/src/components/organisms/layout/comment.tsx index 1dc2c71..f62f95c 100644 --- a/src/components/organisms/layout/comment.tsx +++ b/src/components/organisms/layout/comment.tsx @@ -11,21 +11,6 @@ import { type Comment as CommentSchema, type WithContext } from 'schema-dts'; import CommentForm, { type CommentFormProps } from '../forms/comment-form'; import styles from './comment.module.scss'; -export type CommentAuthor = { - /** - * The author avatar. - */ - avatar: string; - /** - * The author name. - */ - name: string; - /** - * The author website. - */ - url?: string; -}; - export type CommentProps = Pick< CommentType, 'approved' | 'content' | 'id' | 'meta' | 'parentId' @@ -72,14 +57,6 @@ const Comment: FC = ({ const { author, date } = meta; const [publicationDate, publicationTime] = date.split(' '); - const avatarAltText = intl.formatMessage( - { - defaultMessage: '{author} avatar', - description: 'Comment: avatar alternative text', - id: 'T/hUiO', - }, - { author: author.name } - ); const buttonLabel = isReplying ? intl.formatMessage({ defaultMessage: 'Cancel reply', @@ -137,8 +114,8 @@ const Comment: FC = ({ {author.avatar && (