removed file section from flow structure

This commit is contained in:
anovazzi1 2023-03-29 22:52:40 -03:00
commit 119585b2f0
2 changed files with 0 additions and 2 deletions

View file

@ -142,7 +142,6 @@ export function TabsProvider({ children }: { children: ReactNode }) {
id: id.toString(),
data,
chat: flow ? flow.chat : [],
files:{}
};
// Increment the ID counter.

View file

@ -8,7 +8,6 @@ export type FlowType = {
data: ReactFlowJsonObject;
chat: Array<ChatMessageType>;
description:string;
files:{[char: string]: string};
};
export type NodeType = {id:string,type:string,position:XYPosition,data:NodeDataType}
export type NodeDataType = {type:string,node?:APIClassType,id:string,value:any}