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) => {
setCustomValue(event.target.value);
};
const handleCustomValueChange = (event: React.ChangeEvent<HTMLInputElement>) => {
    setCustomValue(event.target.value);
  };
useEffect(() => {
socket?.on('log', handleLog);