From 9b8c46cdb7bf13b82d6475314e6a65a5e65cf663 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 20 Feb 2026 13:19:56 -0600 Subject: [PATCH] Add A/A test (#9917) --- src/Navigation.tsx | 3 +++ src/analytics/features/types.ts | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/Navigation.tsx b/src/Navigation.tsx index a9b3c00585..6cc12b62d2 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -1008,6 +1008,9 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) { }) } } + + // temp, just testing + void ax.features.enabled(ax.features.AATest) }) return ( diff --git a/src/analytics/features/types.ts b/src/analytics/features/types.ts index 3987808691..2905969fc9 100644 --- a/src/analytics/features/types.ts +++ b/src/analytics/features/types.ts @@ -9,4 +9,6 @@ export enum Features { ImportContactsOnboardingDisable = 'import_contacts:onboarding:disable', ImportContactsSettingsDisable = 'import_contacts:settings:disable', LiveNowBetaDisable = 'live_now_beta:disable', + + AATest = 'aa-test', }