diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION
index 075d963762..83ce70120a 100644
--- a/compiled/facebook-www/REVISION
+++ b/compiled/facebook-www/REVISION
@@ -1 +1 @@
-5bcade5fcf5610e82e7cda05cc6de574bdace0c7
+40f653d13c363c6f81b13de67ce391991fb1f870
diff --git a/compiled/facebook-www/WARNINGS b/compiled/facebook-www/WARNINGS
deleted file mode 100644
index 983a244a87..0000000000
--- a/compiled/facebook-www/WARNINGS
+++ /dev/null
@@ -1,404 +0,0 @@
-"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values."
-"%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://reactjs.org/link/controlled-components"
-"%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components"
-"%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components"
-"%s declares both contextTypes and contextType static properties. The legacy contextTypes property will be ignored."
-"%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s"
-"%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?"
-"%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate()."
-"%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?"
-"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value."
-"%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?"
-"%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used."
-"%s is accessing findDOMNode inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead."
-"%s is accessing findNodeHandle inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead."
-"%s is accessing isMounted inside its render() function. render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead."
-"%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node"
-"%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node"
-"%s is not a supported value for revealOrder on . Did you mean \"together\", \"forwards\" or \"backwards\"?"
-"%s must not return anything besides a function, which is used for clean-up.%s"
-"%s objects cannot be rendered as text children. Try formatting it using toString().%s"
-"%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders."
-"%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array."
-"%s uses the legacy childContextTypes API which is no longer supported. Use React.createContext() instead."
-"%s uses the legacy contextTypes API which is no longer supported. Use React.createContext() with React.useContext() instead."
-"%s uses the legacy contextTypes API which is no longer supported. Use React.createContext() with static contextType instead."
-"%s(...) is deprecated in plain JavaScript React classes. %s"
-"%s(...): Can only update a mounting component. This usually means you called %s() outside componentWillMount() on the server. This is a no-op.\n\nPlease check the code for the %s component."
-"%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s."
-"%s(...): No `render` method found on the returned component instance: did you accidentally return an object from the constructor?"
-"%s(...): No `render` method found on the returned component instance: you may have forgotten to define `render`."
-"%s(...): When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed."
-"%s(...): childContextTypes cannot be defined on a function component."
-"%s.childContextTypes is specified but there is no getChildContext() method on the instance. You can either define getChildContext() on %s or remove childContextTypes from it."
-"%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead."
-"%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead."
-"%s.getChildContext(): childContextTypes must be defined in order to use getChildContext()."
-"%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined."
-"%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined."
-"%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false."
-"%s.state: must be set to an object or null"
-"%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI."
-"%s: Function components do not support contextType."
-"%s: Function components do not support getDerivedStateFromProps."
-"%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly."
-"%s: Support for defaultProps will be removed from function components in a future major release. Use JavaScript default parameters instead."
-"%s: Support for defaultProps will be removed from memo components in a future major release. Use JavaScript default parameters instead."
-"%s: Unsafe read of a mutable value during render.\n\nReading from a ref during render is only safe if:\n1. The ref value has not been updated, or\n2. The ref holds a lazily-initialized value that is only set once.\n"
-"%s: Unsafe write of a mutable value during render.\n\nWriting to a ref during render is only safe if the ref holds a lazily-initialized value that is only set once.\n"
-"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)"
-"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)"
-"%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method."
-"%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method."
-"%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method."
-"%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only."
-"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."
-"<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements."
-" is only valid if revealOrder is \"forwards\" or \"backwards\". Did you mean to specify revealOrder=\"forwards\"?"
-"A button can only specify a formAction along with type=\"submit\" or no type."
-"A cache instance was released after it was already freed. This likely indicates a bug in React."
-"A cache instance was retained after it was already freed. This likely indicates a bug in React."
-"A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional."
-"A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components"
-"A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components"
-"A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"
-"A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."
-"A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s."
-"A large precomputed chunk was passed to writeChunk without being copied. Large chunks get enqueued directly and are not copied. This is incompatible with precomputed chunks because you cannot enqueue the same precomputed chunk twice. Use \"cloneChunk\" to make a copy of this large precomputed chunk before writing it. This is a bug in React."
-"A nested %s was passed to row #%s in . Wrap it in an additional SuspenseList to configure its revealOrder: ... {%s} ... "
-"A pointerId must be passed to \"%s\""
-"A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />"
-"A script element was rendered with %s. If script element has children it must be a single string. Consider using dangerouslySetInnerHTML or passing a plain string as children."
-"A single row was passed to a . This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?"
-"A suspended resource finished loading inside a test, but the event was not wrapped in act(...).\n\nWhen testing, code that resolves suspended data should be wrapped into act(...):\n\nact(() => {\n /* finish loading suspended data */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act"
-"A title element received a React element for children. In the browser title Elements can only have Text Nodes as children. If the children being rendered output more than a single text node in aggregate the browser will display markup and comments as text in the title and hydration will likely fail and fall back to client rendering"
-"A title element received a value that was not a string or number for children. In the browser title Elements can only have Text Nodes as children. If the children being rendered output more than a single text node in aggregate the browser will display markup and comments as text in the title and hydration will likely fail and fall back to client rendering"
-"A title element received an array with more than 1 element as children. In browsers title Elements can only have Text Nodes as children. If the children being rendered output more than a single text node in aggregate the browser will display markup and comments as text in the title and hydration will likely fail and fall back to client rendering"
-"A view is reporting that a touch occurred on tag zero."
-"An empty string (\"\") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string."
-"An empty string (\"\") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string."
-"An error occurred during hydration. The server HTML was replaced with client content in <%s>."
-"An input can only specify a formAction along with type=\"submit\" or type=\"image\"."
-"An invalid container has been provided. This may indicate that another renderer is being used in addition to the test renderer. (For example, ReactDOM.createPortal inside of a ReactTestRenderer tree.) This is not supported."
-"An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."
-"An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.\n\nPlease update the following component: %s"
-"An update to %s inside a test was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() => {\n /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act"
-"Assignment to read-only property will result in a no-op: `%s`"
-"Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."
-"Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?"
-"Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?"
-"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component."
-"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead."
-"Cannot call startTransition while rendering."
-"Cannot find single active touch."
-"Cannot hydrate Suspense in legacy mode. Switch from ReactDOM.hydrate(element, container) to ReactDOMClient.hydrateRoot(container, ).render(element) or remove the Suspense components from the server rendered components."
-"Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to