We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca6fbd5 commit dec4f9aCopy full SHA for dec4f9a
2 files changed
lessons/04-async-await/practice/index.final.ts
@@ -63,7 +63,7 @@ async function main() {
63
// Promise.all for Promise.allSettled to see how that changes things
64
65
// async function getVehicle(url: string) {
66
-// if (url === '${API}/vehicles/30/') {
+// if (url === `${API}/vehicles/30/`) {
67
// return Promise.reject('404: Not Found')
68
// } else {
69
// const response = await fetch(url)
lessons/04-async-await/practice/index.ts
@@ -62,7 +62,7 @@ main()
62
0 commit comments