From bce63f9aa209d31b1c37ea427878670f897f20f9 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Sun, 31 Mar 2024 21:46:26 -0400 Subject: [PATCH] Increase extension banner chance --- 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 3162e768..dfc2240e 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 35% chance or not if users dont meet requirements - if (!isEligible && Math.random() < 0.35) { + // Show the banner with a 42% chance or not if users dont meet requirements + if (!isEligible && Math.random() < 0.42) { let bannerText = ""; switch (props.extensionState) { case "noperms":