Skip to content

Commit

Permalink
feat: selection pseudo-paginated
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Mar 28, 2024
1 parent 9364c68 commit 040b569
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/endpoints/getScreenshots.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/Plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const queryClient = new QueryClient({
},
});

export function Plugin({ config, selectedNodes }: Props) {
export function Plugin({ config }: Props) {
return (
<GlobalState initialConfig={config}>
<QueryClientProvider client={queryClient}>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/Pull/Pull.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 040b569

Please sign in to comment.