diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-10 17:44:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-10 17:44:19 +0300 |
commit | 5be753ecdfaf486c5d01d90c34008a1f5f275f00 (patch) | |
tree | 10487613f9a5e6f90b790d812edf06b7b018b205 /src | |
parent | c7591ef058be0456f9fe122b686aa1c1f1c6e966 (diff) | |
download | voidsky-5be753ecdfaf486c5d01d90c34008a1f5f275f00.tar.zst |
add prevent default to thread anchor checkmark (#9020)
Diffstat (limited to 'src')
-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={[ |