diff --git a/lib/Select/components/Group.tsx b/lib/Select/components/Group.tsx index d75d2ea..c7e7d51 100644 --- a/lib/Select/components/Group.tsx +++ b/lib/Select/components/Group.tsx @@ -87,10 +87,11 @@ const GroupBase = (props: Props, ref: React.Ref) => { React.Children.toArray( resolvePropWithRenderContext(childrenProp, { hidden: false }), ), + true, ); hidden = options.every( - option => !filtered.some(entity => entity === option.value), + option => !filtered.some(value => value === option.value), ); } }