-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
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
Fix errors on boot #93
Conversation
Thanks for fixing! Could you publish a new version? |
Ah, yes, 0.6.3 was made yesterday, but not released on GitHub: https://github.com/skevy/graphiql-app/releases/tag/v0.6.3 And here's the cask update (pending as of this comment): Homebrew/homebrew-cask#39997 |
Awsome! Thanks for the quick response 👍 |
@@ -7,6 +7,7 @@ | |||
"scripts": { | |||
"dev-server": "webpack-dev-server --config webpack/webpack-dev-server.config.js --progress --colors --port 2992 --inline", | |||
"hot-dev-server": "webpack-dev-server --config webpack/webpack-hot-dev-server.config.js --hot --progress --colors --port 2992 --inline", | |||
"build-dev": "webpack --config webpack/webpack.config.js --progress --profile --colors", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
``
@@ -7,6 +7,7 @@ | |||
"scripts": { | |||
"dev-server": "webpack-dev-server --config webpack/webpack-dev-server.config.js --progress --colors --port 2992 --inline", | |||
"hot-dev-server": "webpack-dev-server --config webpack/webpack-hot-dev-server.config.js --hot --progress --colors --port 2992 --inline", | |||
"build-dev": "webpack --config webpack/webpack.config.js --progress --profile --colors", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r
Should close #82 and #90.
When the app first launches, it immediately tries to grab a schema from an endpoint URL. But if there's no URL, the
fetch
function fails with an obscure error.