-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 display of objects in the documentation error page #11261
Conversation
|
size-limit report 📦
|
✅ Deploy Preview for apollo-client-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Sry for more spam in here, another note: import { loadErrorMessages, loadDevMessages } from "@apollo/client/dev";
if (__DEV__) { // Adds messages only in a dev environment
loadDevMessages();
loadErrorMessages();
} will suffer from the same issue. So in my case (in the referenced issue), the console log will is just look like |
@JonasDoe yeah that's a different fix, we'll have to ship a new Apollo Client version for that. Thanks for the heads-up, I'll see that I get to that on monday! |
Fixes #11260
Before this, objects were not displayed correctly in error messages.
Before
After
Checklist: