From 5d475a40f53f8c2797b9f9be07ceacca84e740b1 Mon Sep 17 00:00:00 2001 From: Mary Hipp Date: Thu, 4 Jan 2024 12:47:45 -0500 Subject: [PATCH] lint --- invokeai/frontend/web/src/app/components/InvokeAIUI.tsx | 2 +- .../src/features/system/components/InvokeAILogoComponent.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/app/components/InvokeAIUI.tsx b/invokeai/frontend/web/src/app/components/InvokeAIUI.tsx index cc2c945898..214e2c7b28 100644 --- a/invokeai/frontend/web/src/app/components/InvokeAIUI.tsx +++ b/invokeai/frontend/web/src/app/components/InvokeAIUI.tsx @@ -9,6 +9,7 @@ import type { CustomStarUi } from 'app/store/nanostores/customStarUI'; import { $customStarUI } from 'app/store/nanostores/customStarUI'; import { $galleryHeader } from 'app/store/nanostores/galleryHeader'; import { $isDebugging } from 'app/store/nanostores/isDebugging'; +import { $logo } from 'app/store/nanostores/logo'; import { $projectId } from 'app/store/nanostores/projectId'; import { $queueId, DEFAULT_QUEUE_ID } from 'app/store/nanostores/queueId'; import { $store } from 'app/store/nanostores/store'; @@ -21,7 +22,6 @@ import React, { lazy, memo, useEffect, useMemo } from 'react'; import { Provider } from 'react-redux'; import { addMiddleware, resetMiddlewares } from 'redux-dynamic-middlewares'; import type { ManagerOptions, SocketOptions } from 'socket.io-client'; -import { $logo } from 'app/store/nanostores/logo'; const App = lazy(() => import('./App')); const ThemeLocaleProvider = lazy(() => import('./ThemeLocaleProvider')); diff --git a/invokeai/frontend/web/src/features/system/components/InvokeAILogoComponent.tsx b/invokeai/frontend/web/src/features/system/components/InvokeAILogoComponent.tsx index d296926269..aa2c07d277 100644 --- a/invokeai/frontend/web/src/features/system/components/InvokeAILogoComponent.tsx +++ b/invokeai/frontend/web/src/features/system/components/InvokeAILogoComponent.tsx @@ -1,12 +1,12 @@ /* eslint-disable i18next/no-literal-string */ import { Image } from '@chakra-ui/react'; import { useStore } from '@nanostores/react'; +import { $logo } from 'app/store/nanostores/logo'; import InvokeLogoYellow from 'assets/images/invoke-key-ylw-sm.svg'; import { InvText } from 'common/components/InvText/wrapper'; import { InvTooltip } from 'common/components/InvTooltip/InvTooltip'; import { memo, useMemo, useRef } from 'react'; import { useGetAppVersionQuery } from 'services/api/endpoints/appInfo'; -import { $logo } from '../../../app/store/nanostores/logo'; const InvokeAILogoComponent = () => { const { data: appVersion } = useGetAppVersionQuery();