Skip to content

Commit

Permalink
Fix size of image in PostCard
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Feb 6, 2024
1 parent 62c16a4 commit 6865016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/blog/src/components/PostCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function PostCard({ post }: PostCardProps) {
<article className={cx()}>
{post.data.ogImage && (
<figure className={cx("__image")}>
<Image src={post.data.ogImage} alt={post.data.title} forceSize={300} />
<Image src={post.data.ogImage} alt={post.data.title} forceSize={500} />
</figure>
)}
<header className={cx("__header")}>
Expand Down

0 comments on commit 6865016

Please sign in to comment.