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
Hello. I cloned and run clean project (main branch) and faced following JS errors in console after logging:
Failed prop type: The prop selectedTab is marked as required in NavBar, but its value is null.
React does not recognize the buttonRef prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase buttonref instead. If you accidentally passed it from a parent component, remove it from the DOM element.
React does not recognize the labelWidth prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase labelwidth instead. If you accidentally passed it from a parent component, remove it from the DOM element.
Per my understanding, first one is caused by undetermined order in which components are rendered and can be fixed by assigning dummy/empty value to selectedTab (so that NavBar does not mark anything unless some componen is rendered).
Second and third issues seems to be related to changes in mui. Is that correct? Should they just be removed?
Thanks in advance for any help.
The text was updated successfully, but these errors were encountered:
Hello. I cloned and run clean project (main branch) and faced following JS errors in console after logging:
selectedTab
is marked as required inNavBar
, but its value isnull
.buttonRef
prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercasebuttonref
instead. If you accidentally passed it from a parent component, remove it from the DOM element.labelWidth
prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercaselabelwidth
instead. If you accidentally passed it from a parent component, remove it from the DOM element.Per my understanding, first one is caused by undetermined order in which components are rendered and can be fixed by assigning dummy/empty value to selectedTab (so that NavBar does not mark anything unless some componen is rendered).
Second and third issues seems to be related to changes in mui. Is that correct? Should they just be removed?
Thanks in advance for any help.
The text was updated successfully, but these errors were encountered: