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/screens/Moderation/VerificationSettings.tsx | |
parent | 4890648116e255ed28c5ae0522a53278a6c35a39 (diff) | |
download | voidsky-2a453cd9cac811da0eb7c802489c6e4bcfe4bd78.tar.zst |
invert flag for sending to statsig (#8431)
Diffstat (limited to 'src/screens/Moderation/VerificationSettings.tsx')
-rw-r--r-- | src/screens/Moderation/VerificationSettings.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/screens/Moderation/VerificationSettings.tsx b/src/screens/Moderation/VerificationSettings.tsx index f9665d6d9..cd023ae56 100644 --- a/src/screens/Moderation/VerificationSettings.tsx +++ b/src/screens/Moderation/VerificationSettings.tsx @@ -46,9 +46,13 @@ export function Screen() { to={urls.website.blog.initialVerificationAnnouncement} label={_(msg`Learn more`)} onPress={() => { - logger.metric('verification:learn-more', { - location: 'verificationSettings', - }) + logger.metric( + 'verification:learn-more', + { + location: 'verificationSettings', + }, + {statsig: true}, + ) }}> Learn more here. </InlineLinkText> |