Skip to content

Commit

Permalink
๐Ÿšจ Fix: ์‚ฌ์šฉ์ž ํ”„๋กœํ•„์ด ์ถœ๋ ฅ๋˜์ง€ ์•Š๋Š” ๋ฌธ์ œ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
suyeon1218 authored Sep 22, 2023
2 parents e7d1df9 + 8c2ac6b commit 7174a7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/PostPreview/PostHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PostHeader = ({
totalComments,
noneProfile
}: PostHeaderProps) => {
const { image, author, createdAt } = post;
const { author, createdAt } = post;
const iconDescription = [
{ name: 'favorite', size: 12, total: totalLikes },
{ name: 'chat', size: 12, total: totalComments }
Expand All @@ -37,7 +37,7 @@ const PostHeader = ({
color='black'>
<Avatar
alt={'์œ ์ € ํ”„๋กœํ•„'}
src={image}
src={author.image}
size={35}
/>
</Link>
Expand Down

0 comments on commit 7174a7c

Please sign in to comment.