Skip to content

Commit cfe9611

Browse files
committed
feat: 커뮤니티 리스트에서 이미지 안보이는 이슈 수정 (#develop)
1 parent fd7fa65 commit cfe9611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/ahhachul.com/src/components/common/list/listItem/ListItem.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Post = ({ post }: PostProps) => {
2828
<S.Content>{post.content}</S.Content>
2929
)}
3030
</S.TextContainer>
31-
{post?.imageUrl && (
31+
{(post?.imageUrl || post.image) && (
3232
<S.ImageContainer>
3333
<S.PostImage
3434
width="100%"

0 commit comments

Comments
 (0)