diff --git a/frontend/components/CreateProposalForm.tsx b/frontend/components/CreateProposalForm.tsx index cba9ed0..bf3bf1b 100644 --- a/frontend/components/CreateProposalForm.tsx +++ b/frontend/components/CreateProposalForm.tsx @@ -28,7 +28,6 @@ export default function CreateProposalForm({ userAddress }: CreateProposalFormPr const [description, setDescription] = useState(''); const [amount, setAmount] = useState(''); const [category, setCategory] = useState('development'); - const [voteThreshold, setVoteThreshold] = useState('10'); const [amountError, setAmountError] = useState(''); const [error, setError] = useState(''); const [success, setSuccess] = useState(''); @@ -247,26 +246,6 @@ export default function CreateProposalForm({ userAddress }: CreateProposalFormPr - {/* Vote Threshold */} -
- - setVoteThreshold(e.target.value)} - min="1" - placeholder="10" - className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white placeholder-purple-300/50 focus:outline-none focus:ring-2 focus:ring-purple-400 focus:border-transparent" - disabled={isLoading} - /> -

- Minimum total votes required for execution -

-
- {/* Error Message */} {error && (