diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-13 13:29:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 13:29:33 -0800 |
commit | a01463788d5e38ffca81fd0d50886838b7a3baba (patch) | |
tree | e7e27ca844515e4d9ce404e93dbcca926dea2c5c /src/view/com/lightbox/Lightbox.web.tsx | |
parent | 82177613635c0f10f0af5be63db4b15131ccc89f (diff) | |
download | voidsky-a01463788d5e38ffca81fd0d50886838b7a3baba.tar.zst |
More profile refactor updates (#1886)
* Update the profile avatar lightbox * Update profile editor * Add dynamic likes tab * Add dynamic feeds and lists tabs * Implement lists listing on profiles
Diffstat (limited to 'src/view/com/lightbox/Lightbox.web.tsx')
-rw-r--r-- | src/view/com/lightbox/Lightbox.web.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/lightbox/Lightbox.web.tsx b/src/view/com/lightbox/Lightbox.web.tsx index 331a2b823..4b6ad59f3 100644 --- a/src/view/com/lightbox/Lightbox.web.tsx +++ b/src/view/com/lightbox/Lightbox.web.tsx @@ -38,8 +38,8 @@ export const Lightbox = observer(function Lightbox() { let imgs: Img[] | undefined if (activeLightbox instanceof models.ProfileImageLightbox) { const opts = activeLightbox - if (opts.profileView.avatar) { - imgs = [{uri: opts.profileView.avatar}] + if (opts.profile.avatar) { + imgs = [{uri: opts.profile.avatar}] } } else if (activeLightbox instanceof models.ImagesLightbox) { const opts = activeLightbox |