Skip to content

Commit

Permalink
chore: SortDropdown内のdefaultCheckedのcheckedに置き換える
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiM committed Jan 21, 2025
1 parent fbbfde7 commit 689f5be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ export const SortDropdown: FC<Props & ElementProps> = ({
<RadioButton
name="sortOrder"
value="asc"
defaultChecked={innerCheckedOrder === 'asc'}
checked={innerCheckedOrder === 'asc'}
onChange={onChangeSortOrderRadio}
>
{labels.asc}
</RadioButton>
<RadioButton
name="sortOrder"
value="desc"
defaultChecked={innerCheckedOrder === 'desc'}
checked={innerCheckedOrder === 'desc'}
onChange={onChangeSortOrderRadio}
>
{labels.desc}
Expand Down

0 comments on commit 689f5be

Please sign in to comment.