We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As titled, Fallback UI does not render using fallbackUI prop on <ErrorBoundary /> component.
fallbackUI
<ErrorBoundary />
Using React 17.0.2 and Next.js 11.1.0.
The tag <fallbackUI> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
The text was updated successfully, but these errors were encountered:
@hsdonkin I got the same error when I tried to pass rendered react component in fallbackUI prop, which seems to be incorrect:
<ErrorBoundary level={LEVEL_ERROR} fallbackUI={<MyComponent />}
Instead try to pass just name of your component, or use function:
<ErrorBoundary level={LEVEL_ERROR} fallbackUI={MyComponent}
or
<ErrorBoundary level={LEVEL_ERROR} fallbackUI={() => (<MyComponent />)}
Sorry, something went wrong.
This is now published in v0.10.0. https://github.com/rollbar/rollbar-react/releases/tag/v0.10.0
Successfully merging a pull request may close this issue.
As titled, Fallback UI does not render using
fallbackUI
prop on<ErrorBoundary />
component.Using React 17.0.2 and Next.js 11.1.0.
The text was updated successfully, but these errors were encountered: