feat(ts): set type to any

This commit is contained in:
karishmas6
2024-08-28 23:57:10 +05:30
parent 4d686a990a
commit 8355b70f58

View File

@@ -98,7 +98,7 @@ export const InterpretationLog = () => {
}
};
const handleCustomInputChange = (event) => {
const handleCustomInputChange = (event: any) => {
setCustomValue(event.target.value);
};