Skip to content

Commit

Permalink
fix: singular thread when there is only one thread
Browse files Browse the repository at this point in the history
Signed-off-by: Donnie Adams <[email protected]>
  • Loading branch information
thedadams committed Oct 22, 2024
1 parent 9e05bbe commit 612bd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/admin/app/routes/_auth.agents._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default function Threads() {
className="px-0"
>
<TypographyP>
{info.getValue()} Threads
{info.getValue() + (info.getValue() === "1" ? " Thread" : " Threads")}
</TypographyP>
</Link>
</Button>
Expand Down

0 comments on commit 612bd73

Please sign in to comment.