diff options
Diffstat (limited to 'src/view/com/lightbox/Lightbox.web.tsx')
-rw-r--r-- | src/view/com/lightbox/Lightbox.web.tsx | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/view/com/lightbox/Lightbox.web.tsx b/src/view/com/lightbox/Lightbox.web.tsx index 9a0fa5d33..2ba7d06cc 100644 --- a/src/view/com/lightbox/Lightbox.web.tsx +++ b/src/view/com/lightbox/Lightbox.web.tsx @@ -38,24 +38,8 @@ export function Lightbox() { return null } - const initialIndex = - activeLightbox.type === 'images' ? activeLightbox.index : 0 - - let imgs: Img[] | undefined - if (activeLightbox.type === 'profile-image') { - const opts = activeLightbox - if (opts.profile.avatar) { - imgs = [{uri: opts.profile.avatar}] - } - } else if (activeLightbox.type === 'images') { - const opts = activeLightbox - imgs = opts.images - } - - if (!imgs) { - return null - } - + const initialIndex = activeLightbox.index + const imgs = activeLightbox.images return ( <LightboxInner imgs={imgs} |