Skip to content

Commit

Permalink
Merge pull request #130 from fictoan/badge-fix
Browse files Browse the repository at this point in the history
v1.8.4
  • Loading branch information
sujan-s authored Nov 24, 2024
2 parents 6b855aa + 56713de commit 4056d40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 1.8.4
- Fix controlled/uncontrolled input bug for `RadioTabgroup`

## 1.8.3
- Add default styles for `Badge`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fictoan-react",
"version": "1.8.3",
"version": "1.8.4",
"private": false,
"description": "",
"type": "module",
Expand Down
1 change: 0 additions & 1 deletion src/components/Form/RadioButton/RadioTabGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const RadioTabGroupOptions = ({ options, defaultValue, value, required, ...props
type="radio"
{...props}
{...option}
defaultChecked={defaultValue === option.value}
checked={value === option.value}
/>
<label htmlFor={option.id}>{option.label}</label>
Expand Down

0 comments on commit 4056d40

Please sign in to comment.