Added a `console.error` log in `useLoadStaleMetadataEntities.ts` that fires when the `ObjectMetadataItems` query returns a response without the expected `objects` field. This log will appear in Sentry breadcrumbs (as a console error-level breadcrumb) before any downstream TypeError, providing critical diagnostic context: whether `result.data` itself was defined, and flagging the unexpected response shape.
This follows the same defensive pattern already used elsewhere in the same file (e.g., `isDefined(result.data?.getPageLayouts)` check on line 138, `isDefined(result.data?.findManyLogicFunctions)` on line 166). The metadata objects query was the only fetch in this file lacking such a guard.