diff --git a/src/components/forms/radioButtonGroup/RadioButtonGroup.tsx b/src/components/forms/radioButtonGroup/RadioButtonGroup.tsx index 8ce8c67f5..a35464bb1 100644 --- a/src/components/forms/radioButtonGroup/RadioButtonGroup.tsx +++ b/src/components/forms/radioButtonGroup/RadioButtonGroup.tsx @@ -26,7 +26,7 @@ export const RadioButtonGroup = ({ }: RadioButtonGroupProps) => { const onChange = (e: React.ChangeEvent) => { const selectedOption = options.find( - (option) => option.id === e.target.value + (option) => option.id === e.target.value, ); if (selectedOption) { onValueChange(selectedOption); @@ -52,4 +52,4 @@ export const RadioButtonGroup = ({ ); -}; \ No newline at end of file +};