From 648b6b3554739341d23c33f568725be16fb42708 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 29 Aug 2024 23:00:53 +0530 Subject: [PATCH] feat: state for selected option --- src/components/molecules/InterpretationLog.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 8abed4d9..a8145249 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -42,6 +42,7 @@ const rows = [ export const InterpretationLog = () => { const [open, setOpen] = useState(false); const [log, setLog] = useState(''); +   const [selectedOption, setSelectedOption] = useState(''); const [customValue, setCustomValue] = useState(''); const logEndRef = useRef(null);