diff --git a/packages/react-app/package.json b/packages/react-app/package.json index 4986f2d3..b672c3dc 100644 --- a/packages/react-app/package.json +++ b/packages/react-app/package.json @@ -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", diff --git a/packages/react-app/src/components/pages/Bounties/Form/index.tsx b/packages/react-app/src/components/pages/Bounties/Form/index.tsx index bb2ba0c8..2ec74b2a 100644 --- a/packages/react-app/src/components/pages/Bounties/Form/index.tsx +++ b/packages/react-app/src/components/pages/Bounties/Form/index.tsx @@ -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')