Troubleshoot content rendering
The framework-agnostic documentation is under development. If you have suggestions for improving the content, let us know by sharing your Feedback at the bottom of this page.
This topic describes the most common errors and solutions when rendering Sitecore content in your front-end app.
An orange error box appears on the page
If an orange error box appears showing a component name, that component is not registered in the component map. The fallback component renders this visible error box so you can immediately see which implementations are missing. No nested placeholder children of that component are rendered until you provide an implementation.
To fix the issue, add a render function for the component and register it in the component map.
For structural wrapper components whose only purpose is to expose nested placeholders (PartialDesignDynamicPlaceholder or ContainerFullBleed), the error box will also appear but there are no meaningful fields to render. For these, create a passthrough component that renders only nested children without any visible wrapper:
Register the passthrough component in the component map for every structural wrapper:
For content components, build a real component that renders its fields, then add it to the component map: