Skip to content

Commit 124fd8e

Browse files
authored
fix: OG image error from missing height field (calcom#22914)
1 parent 5d0dc3f commit 124fd8e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/lib/OgImages.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ export const Meeting = ({ title, users = [], profile }: MeetingImageProps) => {
151151
src={avatar}
152152
alt="Profile picture"
153153
width="160"
154+
height="160"
154155
/>
155156
))}
156157
{avatars.length > 3 && (
@@ -217,7 +218,7 @@ export const App = ({ name, description, slug }: AppImageProps) => (
217218

218219
<div tw="flex items-center w-full">
219220
<div tw="flex">
220-
<img src={`${WEBAPP_URL}${slug}`} alt="App icon" width="172" />
221+
<img src={`${WEBAPP_URL}${slug}`} alt="App icon" width="172" height="172" />
221222
</div>
222223
</div>
223224
<div style={{ color: "#111827" }} tw="flex mt-auto w-full flex-col">

0 commit comments

Comments
 (0)