feat(ts): set type to any

This commit is contained in:
karishmas6
2024-08-28 23:55:56 +05:30
parent 83f14e894c
commit 765c13cc07

View File

@@ -92,7 +92,7 @@ export const InterpretationLog = () => {
scrollLogToBottom(); scrollLogToBottom();
}, [log, scrollLogToBottom]); }, [log, scrollLogToBottom]);
const handleRadioChange = (event) => { const handleRadioChange = (event: any) => {
if (event.target.value === 'custom') { if (event.target.value === 'custom') {
setCustomValue(''); // Clear previous custom value on selection setCustomValue(''); // Clear previous custom value on selection
} }