We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467909f commit bde8c2fCopy full SHA for bde8c2f
exercises/06.optimization/README.mdx
@@ -57,7 +57,7 @@ function ProfileDetails({ username }: { username: string }) {
57
```
58
59
The trouble with this is the `use(getFavoritesCount(username))` will cause the
60
-`ProfileDetails` will suspend until the `getFavoritesCount` request is resolved.
+`ProfileDetails` to suspend until the `getFavoritesCount` request is resolved.
61
Only then will the `getFriends` request be made. This is a waterfall.
62
63
To solve this problem is pretty simple, though maybe not obvious at first. You
0 commit comments