Skip to content

Commit

Permalink
allow more characters (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlinkyPotato authored Aug 13, 2021
1 parent e91008a commit bdee47c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bounty-board/react-app",
"version": "0.1.0",
"version": "1.0.0-beta",
"homepage": ".",
"description": "This web app displays the bounties that are available for DAO members to claim.",
"repository": "https://github.com/BanklessDAO/bounty-board",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ const Form = ({ bountyForm }: { bountyForm: any }): JSX.Element => {
title: yup
.string()
.required('Please provide a title for this Bounty.')
.max(80, 'Title cannot be more than 80 characters'),
.max(250, 'Title cannot be more than 250 characters'),
description: yup
.string()
.required('Please provide the bounty description')
.max(140, 'Description cannot be more than 140 characters'),
.max(4000, 'Description cannot be more than 4000 characters'),
criteria: yup
.string()
.required('Please provide the bounty criteria')
.max(140, 'Criteria cannot be more than 140 characters'),
.max(4000, 'Criteria cannot be more than 4000 characters'),
rewardAmount: yup
.number()
.typeError('Invalid number')
Expand Down

0 comments on commit bdee47c

Please sign in to comment.