style: reformated VisProgStores.tsx to be compliant with code standards

ref: N25B-114
This commit is contained in:
JGerla
2025-10-09 16:41:32 +02:00
parent 40af530fd5
commit ff8a617c5e

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;