Skip to content

Commit 62ae4fb

Browse files
committed
[#47] 🐛 Fix build error by replacing 'any' with precise type definition
1 parent 7b83741 commit 62ae4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/common/input/RadioInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const RadioInput = ({
3434
() =>
3535
onChange?.({
3636
target: { checked: true, value: props.value },
37-
} as any),
37+
} as React.ChangeEvent<HTMLInputElement>),
3838
disabled
3939
)
4040
}

0 commit comments

Comments
 (0)