From 178db4b95f0cdd0705cc180bec1ba25be7c0ff62 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 21 Mar 2024 17:26:28 +0100 Subject: [PATCH] Fix merge bug --- src/frontend/src/components/inputComponent/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/frontend/src/components/inputComponent/index.tsx b/src/frontend/src/components/inputComponent/index.tsx index e7ad0a123..1f7e633b4 100644 --- a/src/frontend/src/components/inputComponent/index.tsx +++ b/src/frontend/src/components/inputComponent/index.tsx @@ -136,9 +136,8 @@ export default function InputComponent({ ], }); } - - onChange && onChange(e.target.value); } + onChange && onChange(e.target.value); }} onKeyDown={(e) => { handleKeyDown(e, value, "");