1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Lower chance for banner again

This commit is contained in:
Cooper Ransom 2024-04-01 00:37:32 -04:00
parent bce63f9aa2
commit 84f8eeab89

View file

@ -88,7 +88,7 @@ export function ExtensionBanner(props: {
return null; return null;
// Show the banner with a 42% chance or not if users dont meet requirements // 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 = ""; let bannerText = "";
switch (props.extensionState) { switch (props.extensionState) {
case "noperms": case "noperms":