"In HTML, the <li> (list item) element is meant to be a direct child of an <ol>(ordered list) or <ul> (unordered list) element. Nesting <li>elements within another <li> element is not valid HTML and can cause issues with the rendering and structure of the list."
https://github.com/Ali-Alaalem/react-state-management-lab/blob/38c8f88defaaa3d5344b0219732933c8857de0c2/src/App.jsx#L110-L119
You're getting an error here
"In HTML, the
<li>
(list item) element is meant to be a direct child of an<ol>
(ordered list) or<ul>
(unordered list) element. Nesting<li>
elements within another<li>
element is not valid HTML and can cause issues with the rendering and structure of the list."