diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 57759192..ff3871e5 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -98,9 +98,9 @@ export const InterpretationLog = () => {   }; - const handleCustomInputChange = (event: any) => { - setCustomValue(event.target.value); - }; + const handleCustomValueChange = (event: React.ChangeEvent) => { +     setCustomValue(event.target.value); +   }; useEffect(() => { socket?.on('log', handleLog);