diff --git a/lessons/hooks.md b/lessons/hooks.md index f48aa28..60120f4 100644 --- a/lessons/hooks.md +++ b/lessons/hooks.md @@ -145,7 +145,7 @@ const breeds = []; ; ``` -So now we have a breed dropdown. The only really new thing we did was use the `disabled` property to disable the dropdown when you don't have any breeds. We're going to use the Petfinder API to request breeds based on the animal selected. If you select `dog`, you want to see poodles, labradors, and chihuahuas and parrots, tabbies, and Maine coons. Petfinder has and endpoint that if you give it a valid animal. We'll show you how to do that in the next lesson with effects. +So now we have a breed dropdown. The only really new thing we did was use the `disabled` property to disable the dropdown when you don't have any breeds. We're going to use the Petfinder API to request breeds based on the animal selected. If you select `dog`, you want to see poodles, labradors, and chihuahuas and parrots, tabbies, and Maine coons. Petfinder has an endpoint that if you give it a valid animal. We'll show you how to do that in the next lesson with effects. > 🏁 [Click here to see the state of the project up until now: 04-hooks][step]