v7.7.17
Patch Changes
-
acc11ad: Fix null children crashing app in production
When
nullis passed as children to the<Markdown>component, it would previously crash the app in production. This fix handles this case by converting it to empty string.Usage Example
Before this fix, the following code would crash in production:
<Markdown>{null}</Markdown>
After this fix, this case is handled gracefully and renders nothing.