Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed May 6, 2024
1 parent 6e95a79 commit ce4fc39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exercises/08.inputs/03.problem.radio/README.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Radios

👨‍💼 We need to allow the user to select the visibility of the account. It can be
either Public or Private (default to public). We could use a `<select>` here, but I don't think
either Public or Private. We could use a `<select>` here, but I don't think
that's the best option. Instead, let's use a radio group.

📜 You can [learn about radio groups on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio)
Expand Down
2 changes: 1 addition & 1 deletion exercises/08.inputs/03.solution.radio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function App() {
<fieldset>
<legend>Visibility:</legend>
<label>
<input checked name="visibility" type="radio" value="public" />
<input name="visibility" type="radio" value="public" />
Public
</label>
<label>
Expand Down

0 comments on commit ce4fc39

Please sign in to comment.