Fix bug where RadioButtonSelect treated an omitted isFocus parameter (#6274)

This commit is contained in:
Jacob Richman
2025-08-14 16:48:54 -07:00
committed by GitHub
parent a5c81e3fe0
commit 6037cb5d60
4 changed files with 87 additions and 26 deletions
@@ -55,7 +55,7 @@ export function RadioButtonSelect<T>({
initialIndex = 0,
onSelect,
onHighlight,
isFocused,
isFocused = true,
showScrollArrows = false,
maxItemsToShow = 10,
showNumbers = true,