bump fee
This commit is contained in:
parent
3a3d7702ec
commit
d766cd8c06
@ -16,7 +16,7 @@ export default function PaymentModal({
|
||||
url,
|
||||
onPaymentComplete,
|
||||
}: PaymentModalProps) {
|
||||
const [amount, setAmount] = useState('0.001');
|
||||
const [amount, setAmount] = useState('0.01');
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [error, setError] = useState('');
|
||||
|
||||
@ -93,8 +93,8 @@ export default function PaymentModal({
|
||||
<input
|
||||
id="amount"
|
||||
type="number"
|
||||
min="0.001"
|
||||
step="0.001"
|
||||
min="0.01"
|
||||
step="0.01"
|
||||
value={amount}
|
||||
onChange={handleAmountChange}
|
||||
className="w-full p-3 pr-12 rounded-md"
|
||||
@ -152,4 +152,4 @@ export default function PaymentModal({
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user