remove commit time from create project

This commit is contained in:
Barry Gitarts 2019-08-28 10:57:43 -04:00 committed by Barry G
parent 919d4c087d
commit 30f19298d6
1 changed files with 0 additions and 13 deletions

View File

@ -30,7 +30,6 @@ const { addProject } = LiquidPledging.methods
const { TOO_LONG, REQUIRED } = errorStrings
const hoursToSeconds = hours => hours * 60 * 60
const helperText = 'The length of time the Project has to veto when the project delegates to another delegate and they pledge those funds to a project'
const generateChatRoom = title => `#status-${title.replace(/\s/g, '')}`
const validationSchema = Yup.object().shape({
@ -408,18 +407,6 @@ const SubmissionSection = ({ classes, history }) => {
</span>
}
/>}
<StatusTextField
className={fullWidth}
isRequired={true}
idFor="commitTime"
name="commitTime"
label="Commit Time (Hours)"
bottomLeftLabel={helperText}
placeholder="Commit Time (hours)"
onChange={handleChange}
onBlur={handleBlur}
value={values.commitTime || ''}
/>
</div>
<div className={classnames(secondHalf, {
[classes.fullWidth]: isSmall