Mojang / ore-ui

💎 Building blocks to construct game UIs using web tech.
https://react-facet.mojang.com/
MIT License
404 stars 19 forks source link

Fix <With /> children being called with null|undefined #131

Closed marlonicus closed 11 months ago

marlonicus commented 11 months ago

Problem

If data passed into a <With /> component goes from a non-null value to a null value, then the child can be erroneously called with the null value.

Solution

By preventing propagation using NO_VALUE we can ensure that the children will never be called with a null value.