fix: simplify conditional rendering of ItemBlurhash in Image component (#682)

This commit is contained in:
skalthoff
2025-11-15 10:04:26 -08:00
committed by GitHub
parent 760941ac0b
commit 9414807248

View File

@@ -137,9 +137,7 @@ function Image({
return (
<ZStack style={imageViewStyle.view} justifyContent='center' alignContent='center'>
(!isLoaded && (
<ItemBlurhash item={item} />
))
{!isLoaded && <ItemBlurhash item={item} />}
<AnimatedTamaguiImage
objectFit='cover'
// recyclingKey={imageUrl}