You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered a warning in the console that seems to indicate a potential issue with the handling of a DOM property. Specifically, the property referrerpolicy is being flagged as invalid, with a suggestion to use referrerPolicy instead.
Warning Message
Warning: Invalid DOM property `referrerpolicy`. Did you mean `referrerPolicy`?
Steps to Reproduce
Include a DOM element with the referrerPolicy attribute in the HTML or JSX.
Observe the console for any warnings when the page is rendered.
Expected Behavior
The referrerPolicy attribute should be correctly recognized and handled without warnings, as it is a valid attribute for certain elements like <img> and <iframe>.
Actual Behavior
The console displays a warning suggesting referrerPolicy instead of referrerpolicy, which might indicate an inconsistency in property naming conventions or handling within the library being used.
The text was updated successfully, but these errors were encountered:
Description
I've encountered a warning in the console that seems to indicate a potential issue with the handling of a DOM property. Specifically, the property
referrerpolicy
is being flagged as invalid, with a suggestion to usereferrerPolicy
instead.Warning Message
Steps to Reproduce
referrerPolicy
attribute in the HTML or JSX.Expected Behavior
The
referrerPolicy
attribute should be correctly recognized and handled without warnings, as it is a valid attribute for certain elements like<img>
and<iframe>
.Actual Behavior
The console displays a warning suggesting
referrerPolicy
instead ofreferrerpolicy
, which might indicate an inconsistency in property naming conventions or handling within the library being used.The text was updated successfully, but these errors were encountered: