diff options
Diffstat (limited to 'src/view/com/lightbox/Lightbox.tsx')
-rw-r--r-- | src/view/com/lightbox/Lightbox.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index b6bc670c1..a7f8fed77 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -31,7 +31,9 @@ export function Lightbox() { const opts = activeLightbox return ( <ImageView - images={[{uri: opts.profile.avatar || ''}]} + images={[ + {uri: opts.profile.avatar || '', thumbUri: opts.profile.avatar || ''}, + ]} initialImageIndex={0} visible onRequestClose={onClose} |