Says "hunterstribej" instead of "Bounty Hunters Tribe"
This is the bounty
https://people-test.sphinx.chat/bounty/1192
You may have to create a tribe to add it to a bounty.
In src/bounties/BountyModalButtonSet.tsx line 103, the tribe's name is sliced to not be more than 14 characters
<EuiText className="ButtonText">
{props.tribe.slice(0, 14)} {props.tribe.length > 14 && '...'}
</EuiText>
Change the slice to a CSS ellipsis.
acceptance criteria
Says "hunterstribej" instead of "Bounty Hunters Tribe"
This is the bounty
https://people-test.sphinx.chat/bounty/1192
You may have to create a tribe to add it to a bounty.
In
src/bounties/BountyModalButtonSet.tsxline 103, the tribe's name is sliced to not be more than 14 charactersChange the slice to a CSS ellipsis.
acceptance criteria