Skip to content

Commit

Permalink
Remove isPrimaryRenderer from Flight Server Config (#30115)
Browse files Browse the repository at this point in the history
This was used for Context but since ReactFlightNewContext is gone now
this is no longer used.
  • Loading branch information
sebmarkbage authored Jun 27, 2024
1 parent f5a22fa commit 3bee073
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ import type {
// but it does not have any exports
import './ReactDOMFlightServerHostDispatcher';

// Used to distinguish these contexts from ones used in other renderers.
// E.g. this can be used to distinguish legacy renderers from this modern one.
export const isPrimaryRenderer = true;

// We use zero to represent the absence of an explicit precedence because it is
// small, smaller than how we encode undefined, and is unambiguous. We could use
// a different tuple structure to encode this instead but this makes the runtime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export type HintCode = any;
// eslint-disable-next-line no-unused-vars
export type HintModel<T: any> = any;

export const isPrimaryRenderer = false;

export const supportsRequestStorage = false;
export const requestStorage: AsyncLocalStorage<Request | void> = (null: any);

Expand Down

0 comments on commit 3bee073

Please sign in to comment.