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
#328 introduced the following error when an item is clicked:
Warning: Received `false` for a non-boolean attribute `id`.
If you want to write it to the DOM, pass a string instead: id="false" or id={value.toString()}.
If you used to conditionally omit it with id={condition && value}, pass id={condition ? value : undefined} instead. Error Component Stack
This is resolved by following the error instructions with:
id={_isActive ? 'notify-heading': undefined}
The text was updated successfully, but these errors were encountered:
#328 introduced the following error when an item is clicked:
This is resolved by following the error instructions with:
The text was updated successfully, but these errors were encountered: