diff --git a/src/main/endpoints/getScreenshots.ts b/src/main/endpoints/getScreenshots.ts index 24082ce..edde331 100644 --- a/src/main/endpoints/getScreenshots.ts +++ b/src/main/endpoints/getScreenshots.ts @@ -1,6 +1,5 @@ import { FrameScreenshot, NodeInfo } from "@/types"; import { createEndpoint } from "../utils/createEndpoint"; -import { findTextNodes, getNodeInfo } from "../utils/nodeTools"; export const getScreenshotsEndpoint = createEndpoint( "GET_SCREENSHOTS", diff --git a/src/ui/Plugin.tsx b/src/ui/Plugin.tsx index bc25e3a..2b5fa05 100644 --- a/src/ui/Plugin.tsx +++ b/src/ui/Plugin.tsx @@ -19,7 +19,7 @@ const queryClient = new QueryClient({ }, }); -export function Plugin({ config, selectedNodes }: Props) { +export function Plugin({ config }: Props) { return ( diff --git a/src/ui/views/Pull/Pull.tsx b/src/ui/views/Pull/Pull.tsx index 9ff721f..1d35c61 100644 --- a/src/ui/views/Pull/Pull.tsx +++ b/src/ui/views/Pull/Pull.tsx @@ -12,7 +12,7 @@ import { emit } from "@/utilities"; import { useApiQuery } from "@/ui/client/useQueryApi"; import { ActionsBottom } from "@/ui/components/ActionsBottom/ActionsBottom"; import { FullPageLoading } from "@/ui/components/FullPageLoading/FullPageLoading"; -import { useGlobalActions, useGlobalState } from "@/ui/state/GlobalState"; +import { useGlobalActions } from "@/ui/state/GlobalState"; import { getConnectedNodes } from "@/tools/getConnectedNodes"; import { NodeInfo, TranslationsUpdateHandler } from "@/types"; import { NodeList } from "@/ui/components/NodeList/NodeList";