Angel Rodriguez
Angel Rodriguez
forgot to add filter as a parameter to the find method: `db.collection('issues').find(filter).toArray().then((issues) => { ....`
The table for the Reports page works fine on port 8000 but not the client port 3000. I get this on the HMR build: ` [HMR] Cannot apply update. [HMR]...
This is my webpack.server-config.js file for Webpack 3: ``` const webpack = require('webpack'); const path = require('path'); module.exports = { target: 'node', entry: ['./server/index.js', './node_modules/webpack/hot/poll?1000'], output: { path: path.join(__dirname, './dist'),...
to use react-router v^2.7 you must install react-router-bootstrap@rr-v3 https://github.com/react-bootstrap/react-router-bootstrap/tree/rr-v3
The book has multiple periods on the return on two functions in the tryMongo.js file: book has this: ``` function testWithPromises() { let db; MongoClient.connect('mongodb://localhost/playground').then(connection => { db = connection;...
In Listing 2-6, the command line parameters should have double-dashes rather than single dashes. The repository code is correct, the book has an error. Correct: ``` "compile": "babel src --presets...
Updated the Firebase Messaging based on this post: https://stackoverflow.com/questions/51123197/firebaseinstanceidservice-is-deprecated Updated the gradle files based on this post: https://stackoverflow.com/questions/46537373/unresolved-package-generated-in-androidmanifest-xml/47384765#47384765 Added the notification channel for Oreo devices in MainActivity and in manifest.
Deleted FirebaseInstanceService and Modified FirebaseMessagingService based on docs and this post: https://stackoverflow.com/questions/51123197/firebaseinstanceidservice-is-deprecated The shared preferences section was fine.
per docs used FireBaseMessengerService. Use this update solution: https://stackoverflow.com/questions/51123197/firebaseinstanceidservice-is-deprecated
Added notification channel and updated gradle dependencies