From 84f8eeab89c8237b1bab1cbe7c2f4241cb65a2f6 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Mon, 1 Apr 2024 00:37:32 -0400 Subject: [PATCH] Lower chance for banner 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 dfc2240e..abd60c40 100644 --- a/src/stores/banner/BannerLocation.tsx +++ b/src/stores/banner/BannerLocation.tsx @@ -88,7 +88,7 @@ export function ExtensionBanner(props: { return null; // Show the banner with a 42% chance or not if users dont meet requirements - if (!isEligible && Math.random() < 0.42) { + if (!isEligible && Math.random() < 0.365) { let bannerText = ""; switch (props.extensionState) { case "noperms":