Skip to content

Commit

Permalink
Only show the suggestion list when the component isn’t loading data
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsilverstein committed Jan 31, 2025
1 parent fd97afc commit 3a357c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/combobox-control/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function ComboboxControl( props: ComboboxControlProps ) {
/>
) }
</InputWrapperFlex>
{ isExpanded && (
{ isExpanded && ! isLoading && (
<SuggestionsList
instanceId={ instanceId }
// The empty string for `value` here is not actually used, but is
Expand Down

0 comments on commit 3a357c4

Please sign in to comment.