fix(curriculum): add missing space between "a" and "required" (#65114)

This commit is contained in:
Nigeeta (Nageeta) Kumari
2026-01-13 18:09:48 +01:00
committed by GitHub
parent 21f6c5ea93
commit 9f0f7155e5
@@ -75,7 +75,7 @@ const labels = document.querySelectorAll("label");
assert.match(labels[2]?.textContent, /Donation\s*Amount\s*\(\$\)\s*:/i);
```
Your third `input` should have a`required` attribute.
Your third `input` should have a `required` attribute.
```js
const thirdInput = document.querySelector("input[name='amount']");