diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 98cb153d..9676c935 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -27,7 +27,6 @@ interface InterpretationLogProps { export const InterpretationLog: React.FC = ({ isOpen, setIsOpen }) => { const [log, setLog] = useState(''); - const [selectedOption, setSelectedOption] = useState('10'); const [customValue, setCustomValue] = useState(''); const [tableData, setTableData] = useState([]); @@ -83,10 +82,6 @@ export const InterpretationLog: React.FC = ({ isOpen, se scrollLogToBottom(); }, [log, scrollLogToBottom]); - const handleRadioChange = (event: React.ChangeEvent) => { - setSelectedOption(event.target.value); - }; - const handleCustomValueChange = (event: React.ChangeEvent) => { setCustomValue(event.target.value); };