fix: update nominee address column span and remove nominee percentage field from KYC form

This commit is contained in:
sazzadulalambd
2026-05-05 00:40:34 +06:00
parent 69a2894d7d
commit 79cf53eacb

View File

@@ -1864,7 +1864,7 @@ function NewApplicationModal({ isOpen, onClose, onSave }: { isOpen: boolean; onC
placeholder="email@example.com"
/>
</div>
<div className="sm:col-span-2">
<div className="sm:col-span-3">
<label className="text-xs font-medium text-slate-600 mb-1 block">Nominee Address *</label>
<input
type="text"
@@ -1874,16 +1874,7 @@ function NewApplicationModal({ isOpen, onClose, onSave }: { isOpen: boolean; onC
placeholder="Address"
/>
</div>
<div>
<label className="text-xs font-medium text-slate-600 mb-1 block">Nominee Percentage (%)</label>
<input
type="number"
value={formData.nomineeDetails.percentage}
onChange={(e) => updateField('nomineeDetails.percentage', Number(e.target.value))}
className="w-full px-3 py-2 border border-slate-200 rounded-lg text-sm"
placeholder="100"
/>
</div>
</div>
</div>