Skip to content

Commit 4abd928

Browse files
committed
Include required name for checkbox
Without knowing the right name for this input, the tests can't pass!
1 parent 9886d6b commit 4abd928

File tree

1 file changed

+1
-1
lines changed
  • exercises/08.inputs/01.problem.checkbox

1 file changed

+1
-1
lines changed

exercises/08.inputs/01.problem.checkbox/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function App() {
2626
<label htmlFor="colorInput">Favorite Color:</label>
2727
<input id="colorInput" name="color" type="color" />
2828
</div>
29-
{/* 🐨 add a checkbox with the label "Waiver Signed" */}
29+
{/* 🐨 add a checkbox named "waiver" with the label "Waiver Signed" */}
3030
{/* 💰 put the <input> inside the <label> */}
3131
<div>
3232
<label htmlFor="startDateInput">Start Date:</label>

0 commit comments

Comments
 (0)