Skip to content

Commit

Permalink
fix: remove duplicate labels count
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebrynes7 committed Nov 13, 2024
1 parent b0e503e commit b64238f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/ui/createTaskModal/LabelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const LabelSelector: React.FC<Props> = ({ selected, setSelected }) => {
<DialogTrigger>
<Button className="label-selector" aria-label={i18n.buttonLabel}>
<ObsidianIcon size={16} id="tag" />
{i18n.buttonText(selected.length)} ({selected.length})
{i18n.buttonText(selected.length)}
</Button>
<Popover>
<ListBox
Expand Down

0 comments on commit b64238f

Please sign in to comment.