Error AtlasError Documentation and Resolution

A Client Component was marked async

An unknown Component is an async Client Component. Only Server Components can be async at the moment.

React detected an async Client Component, which is unsupported. This commonly happens when a server-oriented module is moved behind a 'use client' boundary accidentally.

React error #482runtime
An unknown Component is an async Client Component. Only Server Components can be async at the moment.
  • A Client Component function was declared async.
  • A module that was written for the server was accidentally marked with 'use client'.
  • Async data fetching logic was moved directly into a Client Component render path.
  1. Remove async from Client Components and move the async work elsewhere.
  2. Use a Server Component for async rendering where that architecture is supported.
  3. Review recent 'use client' boundaries and make sure server-only modules did not cross into the client bundle.
React Docs: Minified React error #482
React error #482 async Client Component: causes and fixes | Error Atlas