diff --git a/apps/mobile/src/modules/entry-list/templates/EntryNormalItem.tsx b/apps/mobile/src/modules/entry-list/templates/EntryNormalItem.tsx index 19fc191dc..eef2efe2c 100644 --- a/apps/mobile/src/modules/entry-list/templates/EntryNormalItem.tsx +++ b/apps/mobile/src/modules/entry-list/templates/EntryNormalItem.tsx @@ -224,8 +224,9 @@ const ThumbnailImage = ({ }, [audio, entry?.title, feed?.title, image, isLoading, isPlaying, video, videoPlayer]) if (!image && !audio && !video) return null + const isSquare = thumbnailRatio === "square" return ( - + {image && (thumbnailRatio === "square" ? ( @@ -317,32 +318,29 @@ const AspectRatioImage = ({ } return ( - - + - - + transition={100} + blurhash={blurhash} + contentFit="cover" + hideOnError + /> ) }