feat: handle vustom val change

This commit is contained in:
karishmas6
2024-08-29 23:02:12 +05:30
parent f6df1ad2c6
commit 2ad4e2792d

View File

@@ -98,9 +98,9 @@ export const InterpretationLog = () => {
  };   };
const handleCustomInputChange = (event: any) => { const handleCustomValueChange = (event: React.ChangeEvent<HTMLInputElement>) => {
setCustomValue(event.target.value);     setCustomValue(event.target.value);
};   };
useEffect(() => { useEffect(() => {
socket?.on('log', handleLog); socket?.on('log', handleLog);