rm commas in forward lists

This commit is contained in:
keyan 2023-08-28 09:59:01 -05:00
parent f23e05f671
commit 169c762a1f
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ function FwdUsers ({ forwards }) {
<Link href={`/${fwd.user.name}`}>
@{fwd.user.name}
</Link>
{` (${fwd.pct}%)`}{index !== arr.length - 1 && ', '}
{` (${fwd.pct}%)`}{index !== arr.length - 1 && ' '}
</span>))}
</div>

View File

@ -252,7 +252,7 @@ function Votification ({ n }) {
<Link className='text-success' href={`/${fwd.user.name}`}>
@{fwd.user.name}
</Link>
{i !== n.item.forwards.length - 1 && ', '}
{i !== n.item.forwards.length - 1 && ' '}
</span>)
}
return (