diff options
Diffstat (limited to 'src/components/verification')
-rw-r--r-- | src/components/verification/VerificationsDialog.tsx | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/src/components/verification/VerificationsDialog.tsx b/src/components/verification/VerificationsDialog.tsx index 42e7369ee..554149d9e 100644 --- a/src/components/verification/VerificationsDialog.tsx +++ b/src/components/verification/VerificationsDialog.tsx @@ -211,14 +211,22 @@ function VerifierCard({ </> ) : profile && moderationOpts ? ( <> - <ProfileCard.Avatar + <ProfileCard.Link profile={profile} - moderationOpts={moderationOpts} - /> - <ProfileCard.NameAndHandle - profile={profile} - moderationOpts={moderationOpts} - /> + style={[a.flex_row, a.align_center, a.gap_sm, a.flex_1]} + onPress={() => { + outerDialogControl.close() + }}> + <ProfileCard.Avatar + profile={profile} + moderationOpts={moderationOpts} + disabledPreview + /> + <ProfileCard.NameAndHandle + profile={profile} + moderationOpts={moderationOpts} + /> + </ProfileCard.Link> {canAdminister && ( <View> <Button |