This commit is contained in:
SwiftyOS
2024-12-12 15:27:23 +01:00
parent 4af2297ca4
commit dec9dfad9d

View File

@@ -43,7 +43,8 @@ export const FlowInfo: React.FC<
flowVersion?: number | "all";
refresh: () => void;
}
> = ({ flow, executions, flowVersion, refresh, ...props }) => { const {
> = ({ flow, executions, flowVersion, refresh, ...props }) => {
const {
agentName,
setAgentName,
agentDescription,
@@ -65,7 +66,6 @@ export const FlowInfo: React.FC<
setEdges,
} = useAgentGraph(flow.id, false);
const api = useMemo(() => new AutoGPTServerAPI(), []);
const { toast } = useToast();