diff --git a/src/forms/ContractCreationForm/components/EthereumStep/components/GroupBuilder.vue b/src/forms/ContractCreationForm/components/EthereumStep/components/GroupBuilder.vue index b014c136..673d1647 100644 --- a/src/forms/ContractCreationForm/components/EthereumStep/components/GroupBuilder.vue +++ b/src/forms/ContractCreationForm/components/EthereumStep/components/GroupBuilder.vue @@ -6,13 +6,6 @@ :disabled="disabled" />
- = Object.freeze({ isPublic: true, - name: '', payoutStartAt: '', decreaseInterval: '', withdrawLockPeriod: '', @@ -138,7 +130,6 @@ const group = reactive({ const groupValidation = useFormValidation( group, computed(() => ({ - name: { required }, payoutStartAt: { required, minValue: minValue(new Time().timestamp) }, decreaseInterval: { required, integer }, claimLockPeriod: { required, numeric }, diff --git a/src/forms/ContractCreationForm/components/EthereumStep/components/GroupInfoCard.vue b/src/forms/ContractCreationForm/components/EthereumStep/components/GroupInfoCard.vue index ed2f5329..513bf7ac 100644 --- a/src/forms/ContractCreationForm/components/EthereumStep/components/GroupInfoCard.vue +++ b/src/forms/ContractCreationForm/components/EthereumStep/components/GroupInfoCard.vue @@ -1,8 +1,11 @@