diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index ff3871e5..99304ec4 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('10'); + const [selectedOption, setSelectedOption] = useState('10'); const [customValue, setCustomValue] = useState(''); const logEndRef = useRef(null); @@ -94,13 +94,13 @@ export const InterpretationLog = () => { }, [log, scrollLogToBottom]); const handleRadioChange = (event: React.ChangeEvent) => { -   setSelectedOption(event.target.value); -   }; - + setSelectedOption(event.target.value); + }; - const handleCustomValueChange = (event: React.ChangeEvent) => { -     setCustomValue(event.target.value); -   }; + + const handleCustomValueChange = (event: React.ChangeEvent) => { + setCustomValue(event.target.value); + }; useEffect(() => { socket?.on('log', handleLog);