From 3939c9842f580bf5d8b14c8782186e5762843fcf Mon Sep 17 00:00:00 2001 From: AykutSarac Date: Fri, 9 Aug 2024 23:07:59 +0300 Subject: [PATCH] update supported limit --- src/modules/GraphView/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/GraphView/index.tsx b/src/modules/GraphView/index.tsx index fa0caff..a49ddf9 100644 --- a/src/modules/GraphView/index.tsx +++ b/src/modules/GraphView/index.tsx @@ -136,7 +136,7 @@ const GraphCanvas = ({ isWidget }: GraphProps) => { ); }; -const SUPPORTED_LIMIT = 600; +const SUPPORTED_LIMIT = 400; export const GraphView = ({ isWidget = false }: GraphProps) => { const setVisible = useModal(state => state.setVisible);