From b2bc993082d1b31f180535e6642296804651b45f Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Tue, 19 Mar 2024 20:59:56 -0400 Subject: [PATCH] Change banner percentage --- src/stores/banner/BannerLocation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/banner/BannerLocation.tsx b/src/stores/banner/BannerLocation.tsx index 9eb3d1ff..e29f88ad 100644 --- a/src/stores/banner/BannerLocation.tsx +++ b/src/stores/banner/BannerLocation.tsx @@ -87,8 +87,8 @@ export function ExtensionBanner(props: { if (currentLocation !== loc || pathname === "/onboarding/extension") return null; - // Show the banner with a 50% chance or not if users dont meet requirements - if (!isEligible && Math.random() < 0.5) { + // Show the banner with a 35% chance or not if users dont meet requirements + if (!isEligible && Math.random() < 0.35) { let bannerText = ""; switch (props.extensionState) { case "noperms":