-
Notifications
You must be signed in to change notification settings - Fork 30
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(condo): no more useless react warnings #5477
base: main
Are you sure you want to change the base?
Conversation
apps/condo/pages/_document.tsx
Outdated
{/* | ||
NOTE: Extensions similar to Grammarly, ColorZilla and LanguageTool are therefore the cause of this warning, | ||
so you have to find out which one is doing this and then disable/configure it | ||
to not run on the ports you usually use for development. | ||
https://stackoverflow.com/a/75339011/941020 | ||
*/} |
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.
Do we really need note inside client-side part?
apps/condo/domains/common/components/containers/BaseLayout/components/styles.ts
Show resolved
Hide resolved
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.
Why do you suppress all warning on the entire body? This means you cannot catch it in development mode. You should fix your browser extensions instead, shouldn't you?
In reality, we do not have and will never have any attributes in the body. However, this warning is quite common and will always appear, negatively impacting the developer experience (DX) for external contributions and local development. I don't see a significant issue with adding this to the |
Does this only affects body? Because I'm worried about its behaviour, if hydration error occurred in children, will it be thrown? |
Quality Gate passedIssues Measures |
🥳🥳🥳