From 3bce33de3e3d88c12ed477b513a1fbf7c84c6905 Mon Sep 17 00:00:00 2001 From: Liam Fitzgerald Date: Wed, 19 May 2021 14:52:21 +1000 Subject: [PATCH] GraphContent: fix tsc --- .../src/views/landscape/components/Graph/GraphContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/interface/src/views/landscape/components/Graph/GraphContent.tsx b/pkg/interface/src/views/landscape/components/Graph/GraphContent.tsx index 8e612cef8..d61ccffe6 100644 --- a/pkg/interface/src/views/landscape/components/Graph/GraphContent.tsx +++ b/pkg/interface/src/views/landscape/components/Graph/GraphContent.tsx @@ -225,7 +225,7 @@ function stitchAsts(asts: [StitchMode, GraphAstNode][]) { } return [mode, ast]; }, - ['block', { type: 'root', children: [] }] + ['block', { type: 'root', children: [] }] as [StitchMode, GraphAstNode] ); } const header = ({ children, depth, ...rest }) => {