jaredkrinke / sic1

Single-instruction (subleq) programming game
https://jaredkrinke.itch.io/sic-1
Other
88 stars 3 forks source link

React warning: Warning: validateDOMNesting(...): <p> cannot appear as a descendant of <p>. #550

Closed jaredkrinke closed 10 months ago

jaredkrinke commented 10 months ago
jaredkrinke commented 4 months ago

For anyone who was curious about this issue, my mistake was that I put a chunk of HTML (well, JSX) nested under a <p> element, but that chunk of HTML was derived from Markdown and thus had its own <p> elements. So my fix was just to not nest the chunk of HTML under <p>, i.e. I made it a sibling of existing <p> elements instead of a child.