Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: MemberImage의 불필요한 alt 속성 삭제 #147

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading