From 5be753ecdfaf486c5d01d90c34008a1f5f275f00 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 10 Sep 2025 17:44:19 +0300 Subject: add prevent default to thread anchor checkmark (#9020) --- src/components/verification/VerificationCheckButton.tsx | 6 +++--- 1 file 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}) => (