From 782772cec507754da80e6fb1d02d4332163f5ac6 Mon Sep 17 00:00:00 2001 From: Ryan Di Date: Mon, 14 Apr 2025 17:16:15 +1000 Subject: [PATCH] fix debug inputs --- excalidraw-app/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/excalidraw-app/App.tsx b/excalidraw-app/App.tsx index 6b1ce4ff90..503fc7450f 100644 --- a/excalidraw-app/App.tsx +++ b/excalidraw-app/App.tsx @@ -231,7 +231,7 @@ const ConstraintsSettings = ({ onChange={(e) => setConstraints((s) => ({ ...s, - x: parseInt(e.target.value) ?? 200, + width: parseInt(e.target.value) ?? 200, })) } /> @@ -243,7 +243,7 @@ const ConstraintsSettings = ({ onChange={(e) => setConstraints((s) => ({ ...s, - x: parseInt(e.target.value) ?? 200, + height: parseInt(e.target.value) ?? 200, })) } />