fix: add max attribute to expected referrals input

Prevent users from entering values exceeding int32 range.
This commit is contained in:
Fringg
2026-02-23 17:27:34 +03:00
parent 03ad255bf1
commit d1043e83ea

View File

@@ -114,6 +114,7 @@ export default function ReferralPartnerApply() {
<input
type="number"
min={0}
max={2000000000}
className="input w-full"
value={form.expected_monthly_referrals ?? ''}
onChange={(e) =>