diff options
author | hailey <me@haileyok.com> | 2025-05-30 12:13:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 12:13:44 -0700 |
commit | 2a453cd9cac811da0eb7c802489c6e4bcfe4bd78 (patch) | |
tree | d99037b247dca600dfe7f3d39146d1b046d88742 /src/components/verification/VerificationCheckButton.tsx | |
parent | 4890648116e255ed28c5ae0522a53278a6c35a39 (diff) | |
download | voidsky-2a453cd9cac811da0eb7c802489c6e4bcfe4bd78.tar.zst |
invert flag for sending to statsig (#8431)
Diffstat (limited to 'src/components/verification/VerificationCheckButton.tsx')
-rw-r--r-- | src/components/verification/VerificationCheckButton.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/verification/VerificationCheckButton.tsx b/src/components/verification/VerificationCheckButton.tsx index 1b66cd90e..9278a3072 100644 --- a/src/components/verification/VerificationCheckButton.tsx +++ b/src/components/verification/VerificationCheckButton.tsx @@ -100,7 +100,7 @@ export function Badge({ } hitSlop={20} onPress={() => { - logger.metric('verification:badge:click', {}) + logger.metric('verification:badge:click', {}, {statsig: true}) if (state.profile.role === 'verifier') { verifierDialogControl.open() } else { |