From 2c5c61cb7041efa33adf77bc75c1b214b2c47d44 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Mon, 1 Apr 2024 00:49:46 -0400 Subject: [PATCH] Lower chance for banner again again --- src/stores/banner/BannerLocation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/banner/BannerLocation.tsx b/src/stores/banner/BannerLocation.tsx index abd60c40..4b7fed61 100644 --- a/src/stores/banner/BannerLocation.tsx +++ b/src/stores/banner/BannerLocation.tsx @@ -87,7 +87,7 @@ export function ExtensionBanner(props: { if (currentLocation !== loc || pathname === "/onboarding/extension") return null; - // Show the banner with a 42% chance or not if users dont meet requirements + // Show the banner with a 36.5% chance or not if users dont meet requirements if (!isEligible && Math.random() < 0.365) { let bannerText = ""; switch (props.extensionState) {