Merging dev into main #49

Merged
8464960 merged 260 commits from dev into main 2026-01-28 10:48:52 +00:00
Showing only changes of commit ff8a617c5e - Show all commits

View File

@@ -1,4 +1,4 @@
import { create } from 'zustand';
import {create} from 'zustand';
import {
applyNodeChanges,
applyEdgeChanges,
@@ -6,7 +6,7 @@ import {
reconnectEdge, type Edge, type Connection
} from '@xyflow/react';
import { type FlowState } from './VisProgTypes.tsx';
import {type FlowState} from './VisProgTypes.tsx';
const initialNodes = [
{
@@ -83,12 +83,12 @@ const useFlowStore = create<FlowState>((set, get) => ({
});
},
setNodes: (nodes) => {
set({ nodes });
set({nodes});
},
setEdges: (edges) => {
set({ edges });
set({edges});
},
}),
}),
);
export default useFlowStore;