fix: plain image link preview size
continuous-integration/drone/push Build is running Details

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
1 changed files with 1 additions and 1 deletions

View File

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