diff options
Diffstat (limited to 'src/view/com/profile/ProfileSubpageHeader.tsx')
-rw-r--r-- | src/view/com/profile/ProfileSubpageHeader.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileSubpageHeader.tsx b/src/view/com/profile/ProfileSubpageHeader.tsx index 785080c4b..d5b7c2b68 100644 --- a/src/view/com/profile/ProfileSubpageHeader.tsx +++ b/src/view/com/profile/ProfileSubpageHeader.tsx @@ -72,7 +72,17 @@ export function ProfileSubpageHeader({ ) { openLightbox({ type: 'images', - images: [{uri: avatar, thumbUri: avatar}], + images: [ + { + uri: avatar, + thumbUri: avatar, + dimensions: { + // It's fine if it's actually smaller but we know it's 1:1. + height: 1000, + width: 1000, + }, + }, + ], index: 0, thumbDims: null, }) |