Assertion on onMove function on reactflow

This commit is contained in:
Lucas Oliveira 2023-07-08 00:12:04 -03:00
commit db990f2472

View file

@ -371,10 +371,11 @@ export default function Page({ flow }: { flow: FlowType }) {
<ReactFlow
nodes={nodes}
onMove={() => {
updateFlow({
...flow,
data: reactFlowInstance.toObject(),
});
if (reactFlowInstance)
updateFlow({
...flow,
data: reactFlowInstance.toObject(),
});
}}
edges={edges}
onPaneClick={() => {