From c1b1ca03b330589fd85e6306609a7cafd6f905f8 Mon Sep 17 00:00:00 2001 From: kshtiijrajsharma Date: Sun, 24 Mar 2024 22:28:21 +0545 Subject: [PATCH] Change default value for contact spacing --- .../components/Layout/AIModels/AIModelEditor/AIModelEditor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Layout/AIModels/AIModelEditor/AIModelEditor.js b/frontend/src/components/Layout/AIModels/AIModelEditor/AIModelEditor.js index c32a232f..c6dc4c18 100644 --- a/frontend/src/components/Layout/AIModels/AIModelEditor/AIModelEditor.js +++ b/frontend/src/components/Layout/AIModels/AIModelEditor/AIModelEditor.js @@ -39,8 +39,8 @@ const AIModelEditor = (props) => { const [freezeLayers, setFreezeLayers] = useState(false); const [multimasks, setMultimasks] = React.useState(false); - const [inputContactSpacing, setInputContactSpacing] = React.useState(0.75); - const [inputBoundaryWidth, setInputBoundaryWidth] = React.useState(0.5); + const [inputContactSpacing, setInputContactSpacing] = React.useState(1); + const [inputBoundaryWidth, setInputBoundaryWidth] = React.useState(0.25); const [popupRowData, setPopupRowData] = useState(null); const [feedbackCount, setFeedbackCount] = useState(0);