We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33c6e9 commit 4213459Copy full SHA for 4213459
apps/mobile/src/modules/entry-list/templates/EntryNormalItem.tsx
@@ -145,7 +145,6 @@ const ThumbnailImage = ({
145
entry: EntryModel
146
}) => {
147
const feed = useFeed(entry?.feedId as string)
148
-
149
const thumbnailRatio = useUISettingKey("thumbnailRatio")
150
151
const coverImage = entry?.media?.[0]
@@ -186,6 +185,9 @@ const ThumbnailImage = ({
186
185
/>
187
))}
188
+ {/* Show feed icon if no image but audio is present */}
189
+ {audio && !image && <FeedIcon feed={feed} size={96} />}
190
+
191
{audio && (
192
<NativePressable
193
className="absolute inset-0 flex items-center justify-center"
0 commit comments