Describe the Bug
In @payloadcms/ui, there's a ConfigSync component (mangled to Tn in the compiled output) that reads Payload's config from React context. It does:
const { config, setConfig } = useConfigContext() // returns undefined if no provider above it
React context with no provider returns the default value — in this case undefined. The component then immediately destructures undefined, which throws a TypeError. This crashes every admin page including login, because ConfigSync is used at a level where the ConfigProvider hasn't been established yet.
Why it's a React 19 issue specifically:
Payload v3 migrated to React 19 and its new use(Context) hook, along with the React compiler. The compiled output uses use(ConfigContext) instead of useContext(ConfigContext). The component was apparently never tested in the code path where the context provider wasn't an ancestor — which React 19 + this specific admin route structure exposed.
The fix is three lines:
se() || {} // guard the destructuring
i && i(n) // guard the effect callback
o?.unauthenticated // guard the property access
Yes, report it. The Payload repo is at github.com/payloadcms/payload. The useful details to include:
Error: TypeError: Cannot destructure property 'config' of 'se(...)' as it is undefined
Affected pages: /admin/login, /admin/create-first-user
The patch (just the three-line fix above) as a suggested resolution
Link to the code that reproduces this issue
na
Reproduction Steps
Steps to reproduce
- Scaffold a new Payload v3 project with create-payload-app, accepting the default React 19 / Next.js 15 versions
- Configure a Postgres database and set PAYLOAD_SECRET
- Run next dev and navigate to /admin
- Observe a 500 error — the page fails to render with:
TypeError: Cannot destructure property 'config' of 'se(...)' as it is undefined.
at Tn (@payloadcms/ui/dist/exports/client/chunk-2GZJJKQF.js)
This affects /admin/login, /admin/create-first-user, and all other admin routes. The admin is completely inaccessible.
Root cause
The ConfigSync component (Tn in compiled output) in @payloadcms/ui calls use(ConfigContext) and immediately destructures the result without guarding against undefined:
// current — crashes when context has no provider ancestor
const { config, setConfig } = se() // se() = use(ConfigContext), returns undefined
// fix
const { config, setConfig } = se() || {}
Two additional guards are needed in the same component:
c = () => { i && i(n) } // guard effect callback when setConfig is undefined
o?.unauthenticated // guard property access when config is undefined
Expected: Admin pages render normally
Actual: All admin pages crash with a TypeError before any content renders
Which area(s) are affected?
area: ui
Environment Info
Payload: 3.85.1
React: 19.2.7
Next.js: 15.4.11
Node: >=20
Describe the Bug
In @payloadcms/ui, there's a ConfigSync component (mangled to Tn in the compiled output) that reads Payload's config from React context. It does:
const { config, setConfig } = useConfigContext() // returns undefined if no provider above it
React context with no provider returns the default value — in this case undefined. The component then immediately destructures undefined, which throws a TypeError. This crashes every admin page including login, because ConfigSync is used at a level where the ConfigProvider hasn't been established yet.
Why it's a React 19 issue specifically:
Payload v3 migrated to React 19 and its new use(Context) hook, along with the React compiler. The compiled output uses use(ConfigContext) instead of useContext(ConfigContext). The component was apparently never tested in the code path where the context provider wasn't an ancestor — which React 19 + this specific admin route structure exposed.
The fix is three lines:
se() || {} // guard the destructuring
i && i(n) // guard the effect callback
o?.unauthenticated // guard the property access
Yes, report it. The Payload repo is at github.com/payloadcms/payload. The useful details to include:
Error: TypeError: Cannot destructure property 'config' of 'se(...)' as it is undefined
Affected pages: /admin/login, /admin/create-first-user
The patch (just the three-line fix above) as a suggested resolution
Link to the code that reproduces this issue
na
Reproduction Steps
Steps to reproduce
TypeError: Cannot destructure property 'config' of 'se(...)' as it is undefined.
at Tn (@payloadcms/ui/dist/exports/client/chunk-2GZJJKQF.js)
This affects /admin/login, /admin/create-first-user, and all other admin routes. The admin is completely inaccessible.
Root cause
The ConfigSync component (Tn in compiled output) in @payloadcms/ui calls use(ConfigContext) and immediately destructures the result without guarding against undefined:
// current — crashes when context has no provider ancestor
const { config, setConfig } = se() // se() = use(ConfigContext), returns undefined
// fix
const { config, setConfig } = se() || {}
Two additional guards are needed in the same component:
c = () => { i && i(n) } // guard effect callback when setConfig is undefined
o?.unauthenticated // guard property access when config is undefined
Expected: Admin pages render normally
Actual: All admin pages crash with a TypeError before any content renders
Which area(s) are affected?
area: ui
Environment Info