We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
finish
Finish
Both cases were in the GET requests in the games.router.ts file.
/src/routes/games.router.ts @ line #12
const games = (await collections.games.find({}).toArray()) as Game[];
const games = await collections.games.find({}).toArray();
/src/routes/games.router.ts @ line #27
const game = (await collections.games.findOne(query)) as Game;
const game = await collections.games.findOne(query)
I was going through the tutorial and the article code was throwing errors which lead me to this, anyway just a heads up.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found a few discrepancies between the article's code examples and the code in the
Finish
branch, I have them listed below.Both cases were in the GET requests in the games.router.ts file.
/src/routes/games.router.ts @ line #12
/src/routes/games.router.ts @ line #27
I was going through the tutorial and the article code was throwing errors which lead me to this, anyway just a heads up.
The text was updated successfully, but these errors were encountered: