Skip to content

Commit

Permalink
Remove unecessary array fallback
Browse files Browse the repository at this point in the history
Refs: #6874
  • Loading branch information
anicyne committed Oct 9, 2024
1 parent e8903b1 commit 0efa25a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/combobox/shadow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export class KolCombobox implements ComboboxAPI {
@Watch('_suggestions')
public validateSuggestions(value?: SuggestionsPropType): void {
this.controller.validateSuggestions(value);
this._filteredSuggestions = value || [];
this._filteredSuggestions = value;
}

@Watch('_required')
Expand Down

0 comments on commit 0efa25a

Please sign in to comment.