From 8355b70f583ce870b3c6c79fba52c0478ef70779 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 28 Aug 2024 23:57:10 +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 29ad7da0..b6ff103f 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -98,7 +98,7 @@ export const InterpretationLog = () => { } }; - const handleCustomInputChange = (event) => { + const handleCustomInputChange = (event: any) => { setCustomValue(event.target.value); };