fix(curriculum): typos in workshop superhero application form (#60339)

This commit is contained in:
Clarence Bakosi
2025-05-14 14:08:20 +01:00
committed by GitHub
parent 18cb51dffb
commit c8d20d0106
2 changed files with 2 additions and 2 deletions
@@ -9,7 +9,7 @@ dashedName: step-2
Before building out the form itself, you will create the state variables you need. They are `heroName`, `realName`, `powerSource`, and `powers`.
For now, create the variables and setters for `heroName` and `realName`. Both should have an intitial value of empty strings.
For now, create the variables and setters for `heroName` and `realName`. Both should have an initial value of empty strings.
# --hints--
@@ -13,7 +13,7 @@ Create a `label` element with a `className` of `section` and `column`, and the t
# --hints--
You shold create a `label` element with a `className` of `section` and `column`.
You should create a `label` element with a `className` of `section` and `column`.
```js
const labelEl = document?.querySelectorAll("label.section.column");