From dafbf7aef2451ed989e7004eb14c43253cb1018e Mon Sep 17 00:00:00 2001 From: Bailey Lissington <54869395+llamington@users.noreply.github.com> Date: Mon, 20 Oct 2025 10:52:39 -0600 Subject: [PATCH] refactor: RadioButton.Group optional props --- src/components/RadioButton/RadioButtonGroup.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RadioButton/RadioButtonGroup.tsx b/src/components/RadioButton/RadioButtonGroup.tsx index 2bdd596561..5261f8d8c0 100644 --- a/src/components/RadioButton/RadioButtonGroup.tsx +++ b/src/components/RadioButton/RadioButtonGroup.tsx @@ -5,11 +5,11 @@ export type Props = { /** * Function to execute on selection change. */ - onValueChange: (value: string) => void; + onValueChange?: (value: string) => void; /** * Value of the currently selected radio button. */ - value: string; + value?: string; /** * React elements containing radio buttons. */