diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 7a7c45cf..29ad7da0 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -98,6 +98,11 @@ export const InterpretationLog = () => { } }; + const handleCustomInputChange = (event) => { + setCustomValue(event.target.value); + }; + + useEffect(() => { socket?.on('log', handleLog);