Skip to content

Commit

Permalink
Sorry linter-sama
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Willebrands committed Jul 12, 2024
1 parent 8202c4b commit 09a6f3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default ({

const onChange = (_, item) => {
if (item) {
const currentItems = value ?? []
const currentItems = value ?? [];
const selectedItems = item.selected
? [...currentItems, item.key]
: currentItems.filter((key) => key !== item.key);

Check warning on line 27 in packages/fluent/modules/widgets/value/FluentUIMultiSelect.jsx

View check run for this annotation

Codecov / codecov/patch

packages/fluent/modules/widgets/value/FluentUIMultiSelect.jsx#L27

Added line #L27 was not covered by tests
Expand Down

0 comments on commit 09a6f3f

Please sign in to comment.