Skip to content

Commit

Permalink
refactor: MemberImage의 불필요한 alt 속성 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
xodms0309 committed Jun 7, 2024
1 parent f913456 commit 029999d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Review/BestReviewItem/BestReviewItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const BestReviewItem = ({ productId }: BestReviewItemProps) => {
<BestReviewItemContainer>
<ReviewRateFavoriteWrapper>
<ReviewerInfoWrapper>
<MemberImage src={profileImage} width={32} height={32} alt={`${userName}의 프로필`} />
<MemberImage src={profileImage} width={32} height={32} />
<div>
<Text size="sm" weight="bold">
{userName}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/RecipeDetailPage/RecipeDetailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RecipeDetailPage = () => {
<main className={main}>
<section className={container}>
<div className={authorWrapper}>
<MemberImage src={author.profileImage} alt={`${author.nickname}님의 프로필`} width={34} height={34} />
<MemberImage src={author.profileImage} width={34} height={34} />
<div>
<Text size="caption2" weight="semiBold">
{author.nickname}
Expand Down

0 comments on commit 029999d

Please sign in to comment.