diff --git a/src/setup/Layout.tsx b/src/setup/Layout.tsx
index 5f1581a3..413689c3 100644
--- a/src/setup/Layout.tsx
+++ b/src/setup/Layout.tsx
@@ -29,11 +29,11 @@ export function Layout(props: { children: ReactNode }) {
return (
- {extensionState !== "success" && !isMobile && (
+ {extensionState !== "success" ? (
- )}
+ ) : null}
{
if (loc) {
@@ -88,7 +90,7 @@ export function ExtensionBanner(props: {
return null;
// Show the banner with a 36.5% chance or not if users dont meet requirements
- if (!isEligible && Math.random() < 0.365) {
+ if (!isEligible && !isMobile && Math.random() < 0.365) {
let bannerText = "";
switch (props.extensionState) {
case "noperms":