diff options
Diffstat (limited to 'src/components/verification/VerificationCheckButton.tsx')
-rw-r--r-- | src/components/verification/VerificationCheckButton.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/verification/VerificationCheckButton.tsx b/src/components/verification/VerificationCheckButton.tsx index 3f3bb2095..45449f43c 100644 --- a/src/components/verification/VerificationCheckButton.tsx +++ b/src/components/verification/VerificationCheckButton.tsx @@ -99,15 +99,15 @@ export function Badge({ : _(msg`View this user's verifications`) } hitSlop={20} - onPress={() => { + onPress={evt => { + evt.preventDefault() logger.metric('verification:badge:click', {}, {statsig: true}) if (state.profile.role === 'verifier') { verifierDialogControl.open() } else { verificationsDialogControl.open() } - }} - style={[]}> + }}> {({hovered}) => ( <View style={[ |