diff --git a/invokeai/frontend/web/src/features/system/components/SettingsModal/SettingsMenu.tsx b/invokeai/frontend/web/src/features/system/components/SettingsModal/SettingsMenu.tsx
index 2e0bd637c1..33455e50fa 100644
--- a/invokeai/frontend/web/src/features/system/components/SettingsModal/SettingsMenu.tsx
+++ b/invokeai/frontend/web/src/features/system/components/SettingsModal/SettingsMenu.tsx
@@ -5,6 +5,7 @@ import {
MenuGroup,
MenuItem,
MenuList,
+ Portal,
useDisclosure,
useGlobalMenuClose,
} from '@invoke-ai/ui-library';
@@ -44,49 +45,51 @@ const SettingsMenu = () => {
icon={}
boxSize={8}
/>
-
-
-
-
-
+
+
+
+
+
+
-
- {isGithubLinkEnabled && (
- }>
- {t('common.githubLabel')}
-
- )}
- {isBugLinkEnabled && (
- }>
- {t('common.reportBugLabel')}
-
- )}
- {isDiscordLinkEnabled && (
- }>
- {t('common.discordLabel')}
-
- )}
-
-
-
- }>
- {t('common.hotkeysLabel')}
-
-
-
- }>
- {t('common.settingsLabel')}
-
-
-
-
-
- }>
- {t('accessibility.about')}
-
-
-
-
+
+ {isGithubLinkEnabled && (
+ }>
+ {t('common.githubLabel')}
+
+ )}
+ {isBugLinkEnabled && (
+ }>
+ {t('common.reportBugLabel')}
+
+ )}
+ {isDiscordLinkEnabled && (
+ }>
+ {t('common.discordLabel')}
+
+ )}
+
+
+
+ }>
+ {t('common.hotkeysLabel')}
+
+
+
+ }>
+ {t('common.settingsLabel')}
+
+
+
+
+
+ }>
+ {t('accessibility.about')}
+
+
+
+
+
);
};