From 2f31b50c102cc59a0c0c2ab51d7ec6e271636a3f Mon Sep 17 00:00:00 2001 From: Piotr Rogowski Date: Sat, 22 Oct 2022 18:08:34 +0200 Subject: [PATCH] Adjust graph height --- src/pages/Diagnose.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Diagnose.tsx b/src/pages/Diagnose.tsx index 43c2670..d9c7cdd 100644 --- a/src/pages/Diagnose.tsx +++ b/src/pages/Diagnose.tsx @@ -92,7 +92,7 @@ const Diagnose = ({ const calculateCanvasSize = useCallback(() => { setCanvasWidth((contentRef.current?.clientWidth || 0) - margin); - setCanvasHeight(Math.round(window.innerHeight - 110)); + setCanvasHeight(Math.round(window.innerHeight - 200)); }, []); const siderProps = { width: sidebarWidth,