Remove console.log

This commit is contained in:
igorrCarvalho 2024-02-02 01:20:59 -03:00
commit f5cf73947c

View file

@ -131,7 +131,6 @@ const useFlowStore = create<FlowStoreType>((set, get) => ({
},
setEdges: (change) => {
let newChange = typeof change === "function" ? change(get().edges) : change;
console.log(newChange)
set({
edges: newChange,
flowState: undefined,