Skip to content

Commit

Permalink
fix: reflect value changes made via resolveData in radio fields
Browse files Browse the repository at this point in the history
  • Loading branch information
estephan authored Apr 16, 2024
1 parent e585f20 commit 9a7066f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const RadioField = ({
onChange(e.currentTarget.value);
}}
disabled={readOnly}
defaultChecked={value === option.value}
checked={value === option.value}
/>
<div className={getClassName("radioInner")}>
{option.label || option.value}
Expand Down

0 comments on commit 9a7066f

Please sign in to comment.