Skip to content

Commit

Permalink
Merge pull request #456 from HausDAO/feat/summon-symbols-length
Browse files Browse the repository at this point in the history
increase min length of token symbols on summoner form
  • Loading branch information
skuhlmann authored Nov 17, 2023
2 parents ecd0ff3 + 78b9985 commit 3f3ab0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions apps/summon/src/layouts/StakeTokenSegment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ export const StakeTokensSegment = ({
rules={{
required: 'Token symbol is required',
maxLength: {
value: 5,
value: 20,
message:
'Token symbol cannot be longer than 5 characters',
'Token symbol cannot be longer than 20 characters',
},
}}
/>
Expand Down Expand Up @@ -100,9 +100,9 @@ export const StakeTokensSegment = ({
rules={{
required: 'Token symbol is required',
maxLength: {
value: 5,
value: 20,
message:
'Token symbol cannot be longer than 5 characters',
'Token symbol cannot be longer than 20 characters',
},
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion libs/utils/src/constants/summoning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const SUMMON_COPY = {
VOTING_STK:
'What does your DAO want to name the tokens representing voting stake?',
TOKEN_SYMBOL:
'How would your DAO like to abbreviate the tokens representing voting stake?',
'How would your DAO like to abbreviate the tokens representing voting stake? (20 letters max)',
STAKE_TRANSFER:
'Should DAO members be allowed to transfer voting stake to other accounts? After summoning, the DAO can change this with a proposal.',
NV_STAKE_TRANSFER:
Expand Down

0 comments on commit 3f3ab0a

Please sign in to comment.