Skip to content

Commit 47508b3

Browse files
committed
removed unused variable
1 parent 6e4da9b commit 47508b3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/webview/Flow.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ import "reactflow/dist/style.css";
1313
import FlowBuilder from "./flowBuilder";
1414
import { Tree } from "../types/tree";
1515

16+
17+
18+
1619
const OverviewFlow = () => {
17-
const reactFlowWrapper = useRef<HTMLDivElement>(null);
20+
1821
const initialNodes : Node[] = [];
1922
const initialEdges : Edge[] = [];
2023

@@ -35,7 +38,7 @@ const OverviewFlow = () => {
3538

3639
// Creates our Tree structure
3740
flowBuilder.mappedData(data, initialNodes, initialEdges)
38-
41+
3942
setEdges(initialEdges);
4043
setNodes(initialNodes)
4144
break;

0 commit comments

Comments
 (0)