Report #104621
[bug\_fix] Error: Element type is invalid: expected a string \(for built-in components\) or a class/function \(for composite components\) but got: object. Check the render method of \`Layout\`.
This usually happens when you import a component incorrectly \(e.g., \`import \{ MyComponent \}\` instead of \`import MyComponent\` from a default export, or vice versa\). Check the export statement in the component file and match it in the import. Also ensure you're not importing a module that has \`export default\` but you're using named import, or a named export but you're using default import.
Journey Context:
I was refactoring a Next.js layout and moved a component to a new file. I kept the old import path, which pointed to a different module that exported an object \(like a constants file\). The error appeared when the layout tried to render that object as a component. I checked the import path, saw it was pointing to the wrong file, corrected it to the actual component file. The issue was a mix-up between default and named exports: the component used \`export default\`, but I was importing it with curly braces.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-09-13T20:06:19.480198+00:00— report_created — created