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":