feat(post form): add on mobile

This commit is contained in:
plebeius.eth
2024-04-24 15:20:55 +02:00
parent a6bbddd2cd
commit 3573b65ffa
3 changed files with 31 additions and 27 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ const BoardNavDesktop = ({ subplebbitAddresses }: BoardNavProps) => {
<span key={index}>
{index === 0 ? null : ' '}
<Link to={`/p/${address}${isInCatalogView ? '/catalog' : ''}`}>{address.includes('.') ? address : address.slice(0, 10).concat('...')}</Link>
{index !== address.length - 1 ? ' /' : null}
{index !== subplebbitAddresses.length - 1 ? ' /' : null}
</span>
);
})}