diff --git a/invokeai/frontend/web/src/features/system/components/SiteHeader.tsx b/invokeai/frontend/web/src/features/system/components/SiteHeader.tsx index e2ee62328e..6770866df0 100644 --- a/invokeai/frontend/web/src/features/system/components/SiteHeader.tsx +++ b/invokeai/frontend/web/src/features/system/components/SiteHeader.tsx @@ -1,11 +1,11 @@ -import { Flex, MenuGroup, Spacer } from '@chakra-ui/react'; +import { Flex, Link, MenuGroup, Spacer } from '@chakra-ui/react'; import { memo } from 'react'; import StatusIndicator from './StatusIndicator'; import { Menu, MenuButton, MenuItem, MenuList } from '@chakra-ui/react'; import IAIIconButton from 'common/components/IAIIconButton'; import { useTranslation } from 'react-i18next'; -import { FaBars, FaBug, FaDiscord, FaGithub, FaKeyboard } from 'react-icons/fa'; +import { FaBars, FaBug, FaDiscord, FaKeyboard } from 'react-icons/fa'; import { MdSettings } from 'react-icons/md'; import { useFeatureStatus } from '../hooks/useFeatureStatus'; import HotkeysModal from './HotkeysModal/HotkeysModal'; @@ -44,41 +44,35 @@ const SiteHeader = () => { {isGithubLinkEnabled && ( - } - > - {t('common.githubLabel')} - + + }> + {t('common.githubLabel')} + + )} {isBugLinkEnabled && ( - } - > - {t('common.reportBugLabel')} - + + }> + {t('common.reportBugLabel')} + + )} {isDiscordLinkEnabled && ( - } - > - {t('common.discordLabel')} - + + }> + {t('common.discordLabel')} + + )} - }> + }> {t('common.hotkeysLabel')} - }> + }> {t('common.settingsLabel')}