fix: plain image link preview size
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
kieran 2024-04-12 13:06:36 +01:00
parent 8d306ce466
commit b4bcc4d371
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -73,7 +73,7 @@ const LinkPreview = ({ url }: { url: string }) => {
} }
} }
if (preview?.image) { if (preview?.image) {
return <ProxyImg src={preview?.image} />; return <ProxyImg src={preview?.image} className="w-full object-cover aspect-video"/>;
} }
return null; return null;
} }