From 765c13cc079c6d5d7be48fc29d205f99baa8f03a Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 28 Aug 2024 23:55:56 +0530 Subject: [PATCH] feat(ts): set type to any --- src/components/molecules/InterpretationLog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index ab5605ab..7a7c45cf 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -92,7 +92,7 @@ export const InterpretationLog = () => { scrollLogToBottom(); }, [log, scrollLogToBottom]); - const handleRadioChange = (event) => { + const handleRadioChange = (event: any) => { if (event.target.value === 'custom') { setCustomValue(''); // Clear previous custom value on selection }