From 5ad6b647217912affbe195ebf1ee3ce9afd543c0 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Fri, 30 Jun 2023 06:17:53 +1200 Subject: [PATCH] cleanup: merge conflicts --- .../system/components/SiteHeaderMenu.tsx | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/invokeai/frontend/web/src/features/system/components/SiteHeaderMenu.tsx b/invokeai/frontend/web/src/features/system/components/SiteHeaderMenu.tsx index fc64f0275b..ba135be8d1 100644 --- a/invokeai/frontend/web/src/features/system/components/SiteHeaderMenu.tsx +++ b/invokeai/frontend/web/src/features/system/components/SiteHeaderMenu.tsx @@ -1,10 +1,9 @@ import { Flex, Link } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; -import { FaBug, FaCube, FaDiscord, FaGithub, FaKeyboard } from 'react-icons/fa'; +import { FaBug, FaDiscord, FaGithub, FaKeyboard } from 'react-icons/fa'; import { MdSettings } from 'react-icons/md'; import HotkeysModal from './HotkeysModal/HotkeysModal'; import LanguagePicker from './LanguagePicker'; -import ModelManagerModal from './ModelManager/ModelManagerModal'; import SettingsModal from './SettingsModal/SettingsModal'; import IAIIconButton from 'common/components/IAIIconButton'; @@ -13,8 +12,6 @@ import { useFeatureStatus } from '../hooks/useFeatureStatus'; const SiteHeaderMenu = () => { const { t } = useTranslation(); - const isModelManagerEnabled = - useFeatureStatus('modelManager').isFeatureEnabled; const isLocalizationEnabled = useFeatureStatus('localization').isFeatureEnabled; const isBugLinkEnabled = useFeatureStatus('bugLink').isFeatureEnabled; @@ -27,20 +24,6 @@ const SiteHeaderMenu = () => { flexDirection={{ base: 'column', xl: 'row' }} gap={{ base: 4, xl: 1 }} > - {isModelManagerEnabled && ( - - } - /> - - )} -