Change banner percentage

This commit is contained in:
Cooper Ransom 2024-03-19 20:59:56 -04:00
parent 7aaa652560
commit b2bc993082
1 changed files with 2 additions and 2 deletions

View File

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