diff --git a/frontend/src/pages/IssuerDashboard.jsx b/frontend/src/pages/IssuerDashboard.jsx index fe7596e..30987c1 100644 --- a/frontend/src/pages/IssuerDashboard.jsx +++ b/frontend/src/pages/IssuerDashboard.jsx @@ -130,6 +130,7 @@ export default function IssuerDashboard() { placeholder={placeholder} value={form[key]} onChange={(e) => setForm((f) => ({ ...f, [key]: e.target.value }))} + aria-describedby={error ? 'issuer-error' : undefined} required /> {errors[key] &&

{errors[key]}

}