Skip to content

v7.7.17

Choose a tag to compare

@github-actions github-actions released this 24 Oct 03:49
· 42 commits to main since this release
f71b888

Patch Changes

  • acc11ad: Fix null children crashing app in production

    When null is 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.