From 36adbaa71ecb78ebe511139119211f98c2a4d249 Mon Sep 17 00:00:00 2001 From: Kee Jefferys Date: Wed, 18 Oct 2023 15:20:17 +1100 Subject: [PATCH] fix: update any to void --- ts/components/basic/SessionRadioGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/basic/SessionRadioGroup.tsx b/ts/components/basic/SessionRadioGroup.tsx index e07c0b19c..aa49fa0c8 100644 --- a/ts/components/basic/SessionRadioGroup.tsx +++ b/ts/components/basic/SessionRadioGroup.tsx @@ -8,7 +8,7 @@ interface Props { initialItem: string; items: Array<{ value: string; label: string }>; group: string; - onClick: (selectedValue: string) => any; + onClick: (selectedValue: string) => void; style?: CSSProperties; }