From 9a3394c30b324bae9beed855511c2f00bcdf36f7 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 29 Aug 2024 23:01:10 +0530 Subject: [PATCH] feat: set default val to 10 --- src/components/molecules/InterpretationLog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index a8145249..c913ce4d 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -42,7 +42,7 @@ const rows = [ export const InterpretationLog = () => { const [open, setOpen] = useState(false); const [log, setLog] = useState(''); -   const [selectedOption, setSelectedOption] = useState(''); +   const [selectedOption, setSelectedOption] = useState('10'); const [customValue, setCustomValue] = useState(''); const logEndRef = useRef(null);