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
when i use the layers component in my project it qorks but i get erros in my cosole..
app-index.tsx:25
Warning: React does not recognize the isHidden prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase ishidden instead. If you accidentally passed it from a parent component, remove it from the DOM element.
app-index.tsx:25
Warning: Received false for a non-boolean attribute expanded.
If you want to write it to the DOM, pass a string instead: expanded="false" or expanded={value.toString()}.
If you used to conditionally omit it with expanded={condition && value}, pass expanded={condition ? value : undefined} instead.
at a
app-index.tsx:25
Warning: React does not recognize the hasCanvases prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase hascanvases instead. If you accidentally passed it from a parent component, remove it from the DOM element.
app-index.tsx:25
Warning: Received false for a non-boolean attribute hovered.
If you want to write it to the DOM, pass a string instead: hovered="false" or hovered={value.toString()}.
If you used to conditionally omit it with hovered={condition && value}, pass hovered={condition ? value : undefined} instead.
The text was updated successfully, but these errors were encountered:
when i use the layers component in my project it qorks but i get erros in my cosole..
app-index.tsx:25
Warning: React does not recognize the
isHidden
prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercaseishidden
instead. If you accidentally passed it from a parent component, remove it from the DOM element.app-index.tsx:25
Warning: Received
false
for a non-boolean attributeexpanded
.If you want to write it to the DOM, pass a string instead: expanded="false" or expanded={value.toString()}.
If you used to conditionally omit it with expanded={condition && value}, pass expanded={condition ? value : undefined} instead.
at a
app-index.tsx:25
Warning: React does not recognize the
hasCanvases
prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercasehascanvases
instead. If you accidentally passed it from a parent component, remove it from the DOM element.app-index.tsx:25
Warning: Received
false
for a non-boolean attributehovered
.If you want to write it to the DOM, pass a string instead: hovered="false" or hovered={value.toString()}.
If you used to conditionally omit it with hovered={condition && value}, pass hovered={condition ? value : undefined} instead.
The text was updated successfully, but these errors were encountered: