An ATproto social media client -- with an independent Appview.

add prevent default to thread anchor checkmark (#9020)

authored by samuel.fm and committed by

GitHub 5be753ec c7591ef0

+3 -3
+3 -3
src/components/verification/VerificationCheckButton.tsx
··· 99 : _(msg`View this user's verifications`) 100 } 101 hitSlop={20} 102 - onPress={() => { 103 logger.metric('verification:badge:click', {}, {statsig: true}) 104 if (state.profile.role === 'verifier') { 105 verifierDialogControl.open() 106 } else { 107 verificationsDialogControl.open() 108 } 109 - }} 110 - style={[]}> 111 {({hovered}) => ( 112 <View 113 style={[
··· 99 : _(msg`View this user's verifications`) 100 } 101 hitSlop={20} 102 + onPress={evt => { 103 + evt.preventDefault() 104 logger.metric('verification:badge:click', {}, {statsig: true}) 105 if (state.profile.role === 'verifier') { 106 verifierDialogControl.open() 107 } else { 108 verificationsDialogControl.open() 109 } 110 + }}> 111 {({hovered}) => ( 112 <View 113 style={[