Skip to content

Commit

Permalink
feat: increased proposal chars to 50 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
Freshenext authored Oct 7, 2024
1 parent 7c299c3 commit 937cbbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/proposals/ProposalNameColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const ProposalNameColumn = () => {
return (
<button onClick={() => router.push(`/proposals/${proposalId}`)}>
<Span className="underline text-left overflow-hidden whitespace-nowrap text-white">
{name.slice(0, 20)}
{name.slice(0, 50)}
</Span>
</button>
)
Expand Down

0 comments on commit 937cbbf

Please sign in to comment.