feat: correctly size search result items

This commit is contained in:
Max Richter
2025-11-12 13:35:39 +01:00
parent 655fc648e6
commit 92126882b6
3 changed files with 9 additions and 5 deletions

View File

@@ -55,8 +55,8 @@ const SearchResultImage = ({ src }: { src: string }) => {
return (
<Image
class="object-cover w-12 h-12 rounded-full"
width="50"
height="50"
width={100}
height={100}
src={src}
alt="preview image"
/>