Skip to content

Commit

Permalink
fix: Fix prettier issues with MultiSelect.tsx
Browse files Browse the repository at this point in the history
Signed-off-by: Noble Mittal <noblemittal@outlook.com>
  • Loading branch information
beingnoble03 committed Sep 15, 2024
1 parent dfd6d92 commit d7946cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/vtadmin/src/components/inputs/MultiSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ export const MultiSelect = <T,>({
return itemToString(item);
};

const selectedItemsText = `Selected (${selectedItems.length}): ${selectedItems.map((item) => _renderItem(item)).join(', ')}`;
const selectedItemsText = `Selected (${selectedItems.length}): ${selectedItems
.map((item) => _renderItem(item))
.join(', ')}`;

return (
<div className={cx(style.container, className, { [style.disabled]: disabled })}>
Expand Down

0 comments on commit d7946cb

Please sign in to comment.