mirror of
https://github.com/Jellify-Music/App.git
synced 2025-12-30 15:29:49 -06:00
fix: simplify conditional rendering of ItemBlurhash in Image component (#682)
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user