Isaac Pak

Results 13 comments of Isaac Pak

@b4dnewz I cloned your fork and tried it out. I get a backbone error: this.get is not a function.

I'll raise the issue on your repo. thanks!

You need to use python version 2.7 and place it in your ENV path too.

@iamtompickering I don't think that's how you use the alphaColors property. But besides that, I don't think this repo is being maintained anymore because the custom colors doesn't work.

@leoc If I add useState logic in the onCompleted function I get caught in a loop. I can get fix this by adding state to the dependency array but then...

This is the functional react component I'm using. I'm also using react-apollo-hooks but I don't think that is affecting anything. ```` const CourseUpdate = () => { const [state, changeState]...

@fbartho I need useEffect to mimic componentDidMount. The useQuery function is basically another react hook, so it can't be used inside of a callback, it needs to be inside of...

@vmptk No. It only fires once. The code I have works, it just bugs me that I have to silence an eslint warning.

@leoc Maybe I can just use the data from useQuery, I'll try that. I was putting data into useState because that data is a list of books which will be...

Looks like you need to upgrade your socket.io version. Older versions use `var EventEmitter = process.EventEmitter` which is deprecated. You need versions that use `var EventEmitter = require('events')`