facebook/react · error

restoreViewTransitionName is not implemented

Error message

restoreViewTransitionName is not implemented

What it means

Error "restoreViewTransitionName is not implemented" thrown in facebook/react.

Source

Thrown at packages/react-native-renderer/src/ReactFiberConfigFabricWithViewTransition.js:68

) {
  // TODO: Get the owner document from the root container.
  this._pseudo = pseudo;
  this._name = name;
}

export type ViewTransitionInstance = null | {
  name: string,
  old: mixin$Animatable,
  new: mixin$Animatable,
  ...
};

export function restoreViewTransitionName(
  instance: Instance,
  props: Props,
): void {
  if (__DEV__) {
    console.warn('restoreViewTransitionName is not implemented');
  }
}

// Cancel the old and new snapshots of viewTransitionName
export function cancelViewTransitionName(
  instance: Instance,
  oldName: string,
  props: Props,
): void {
  if (__DEV__) {
    console.warn('cancelViewTransitionName is not implemented');
  }
}

export function cancelRootViewTransitionName(rootContainer: Container): void {
  // No-op
}

View on GitHub (pinned to eafeac097b)

When it happens

Trigger: Thrown at packages/react-native-renderer/src/ReactFiberConfigFabricWithViewTransition.js:68 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of facebook/react@eafeac097b (2026-08-21). Data as JSON: /api/errors/1f5910199383cc6e. Report an issue: GitHub.