File tree Expand file tree Collapse file tree 4 files changed +1
-5
lines changed
autogpt_platform/frontend/src/app/(platform)/build/components
BuilderActions/components/RunInputDialog Expand file tree Collapse file tree 4 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 77} from "@/lib/autogpt-server-api" ;
88import { parseAsInteger , parseAsString , useQueryStates } from "nuqs" ;
99import { useMemo , useState } from "react" ;
10- import { useShallow } from "zustand/react/shallow" ;
1110import { uiSchema } from "../../../FlowEditor/nodes/uiSchema" ;
1211import { isCredentialFieldSchema } from "@/components/renderers/input-renderer/fields/CredentialField/helpers" ;
1312
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { parseAsString, useQueryStates } from "nuqs";
1818import { CustomControls } from "./components/CustomControl" ;
1919
2020export const Flow = ( ) => {
21- const [ { flowID , flowExecutionID } ] = useQueryStates ( {
21+ const [ { flowExecutionID } ] = useQueryStates ( {
2222 flowID : parseAsString ,
2323 flowExecutionID : parseAsString ,
2424 } ) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import { convertNodesPlusBlockInfoIntoCustomNodes } from "../../helper";
1313import { useEdgeStore } from "../../../stores/edgeStore" ;
1414import { GetV1GetExecutionDetails200 } from "@/app/api/__generated__/models/getV1GetExecutionDetails200" ;
1515import { useGraphStore } from "../../../stores/graphStore" ;
16- import { AgentExecutionStatus } from "@/app/api/__generated__/models/agentExecutionStatus" ;
1716import { useReactFlow } from "@xyflow/react" ;
1817import { useControlPanelStore } from "../../../stores/controlPanelStore" ;
1918import { useHistoryStore } from "../../../stores/historyStore" ;
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ import NewControlPanel from "@/app/(platform)/build/components/NewControlPanel/N
6565import { Flag , useGetFlag } from "@/services/feature-flags/use-get-flag" ;
6666import { BuildActionBar } from "../BuildActionBar" ;
6767import { FloatingReviewsPanel } from "@/components/organisms/FloatingReviewsPanel/FloatingReviewsPanel" ;
68- import { AgentExecutionStatus } from "@/app/api/__generated__/models/agentExecutionStatus" ;
6968
7069// This is for the history, this is the minimum distance a block must move before it is logged
7170// It helps to prevent spamming the history with small movements especially when pressing on a input in a block
@@ -137,7 +136,6 @@ const FlowEditor: React.FC<{
137136 isStopping,
138137 isScheduling,
139138 graphExecutionError,
140- graphExecutionStatus,
141139 nodes,
142140 setNodes,
143141 edges,
You can’t perform that action at this time.
0 commit comments