Error AtlasError Documentation and Resolution

React component suspended while responding to synchronous input

A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator.

React detected a suspension during synchronous user input, which can cause the current UI to be replaced by a fallback unless the update is scheduled as a transition.

React error #426runtime
A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator.
  • A state update triggered by direct user input caused a component to suspend.
  • Async rendering work runs on the urgent input path instead of in a transition.
  • Suspense boundaries are handling input-triggered updates as blocking work.
  1. Wrap updates that may suspend in startTransition.
  2. Separate urgent input state from deferred rendering state.
  3. Review Suspense boundaries and async data work triggered directly by input.
React Docs: Minified React error #426
React error #426 component suspended while responding to input | Error Atlas