diff --git a/src/ui/component/tagsSearch/view.jsx b/src/ui/component/tagsSearch/view.jsx index 482ede25b..ff0fce5ad 100644 --- a/src/ui/component/tagsSearch/view.jsx +++ b/src/ui/component/tagsSearch/view.jsx @@ -62,7 +62,7 @@ export default function TagsSearch(props: Props) { setNewTag(''); - // Split into individual tags, normalize the tags, and remove duplicates with sets. + // Split into individual tags, normalize the tags, and remove duplicates with a set. tags = [...new Set(tags.split(',').map(newTag => newTag.trim().toLowerCase()))]; tags.forEach(tag => { if (onSelect) {