diff --git a/apps/web/components/Forms/PoolForm.tsx b/apps/web/components/Forms/PoolForm.tsx index 434e8827f..32944ad19 100644 --- a/apps/web/components/Forms/PoolForm.tsx +++ b/apps/web/components/Forms/PoolForm.tsx @@ -927,7 +927,6 @@ export function PoolForm({ token, communityAddr }: Props) { tooltip="% of Pool's voting weight needed to pass the smallest funding proposal possible. Higher funding requests demand greater conviction to pass." label="Minimum conviction" register={register} - required errors={errors} registerKey="minimumConviction" type="number" @@ -936,17 +935,12 @@ export function PoolForm({ token, communityAddr }: Props) { className="pr-14" otherProps={{ step: 1 / CV_SCALE_PRECISION, - min: 1 / CV_SCALE_PRECISION, }} registerOptions={{ max: { value: 99.9, message: "Minimum conviction should be under 100%", }, - min: { - value: 1 / CV_SCALE_PRECISION, - message: "Minimum conviction must be greater than 0", - }, }} suffix="%" /> diff --git a/apps/web/components/ProposalCard.tsx b/apps/web/components/ProposalCard.tsx index fc1b6ffa6..baa278b9b 100644 --- a/apps/web/components/ProposalCard.tsx +++ b/apps/web/components/ProposalCard.tsx @@ -205,33 +205,28 @@ export function ProposalCard({