diff --git a/src/content/blog/2024/04/01/react-19.md b/src/content/blog/2024/04/01/react-19.md
index 442f5cfcf..8a0768f27 100644
--- a/src/content/blog/2024/04/01/react-19.md
+++ b/src/content/blog/2024/04/01/react-19.md
@@ -23,22 +23,28 @@ April 1, 2024, by [The React Team](/community/team)
-React 19 Beta is now available on npm!
-
-In our [React 19 Upgrade Guide](/blog/04/01/react-19-upgrade-guide), we shared step-by-step instructions for upgrading your app to the React 19 Beta. In this post, we'll give an overview of the new features in React 19 Beta, and how you can adopt them.
-
-
-
-_Note for React Native users: React 19 will ship a future version of React Native with the New React Native Architecture._
-
-
-
Stream [React Conf 2024]((https://conf.react.dev)) live May 15–16!
+React 19 Beta is now available on npm!
+
+In our [React 19 Upgrade Guide](/blog/2024/04/01/react-19-upgrade-guide), we shared step-by-step instructions for upgrading your app to the React 19 Beta. In this post, we'll give an overview of the new features in React 19 Beta, and how you can adopt them.
+
+- [What's new in React 19](#whats-new-in-react-19)
+- [Improvements in React 19](#improvements-in-react-19)
+- [How to Upgrade](#how-to-upgrade)
+
+For a list of breaking changes, see the [Upgrade Guide](/blog/2024/04/01/react-19-upgrade-guide).
+
+_Note for React Native users: React 19 will ship a future version of React Native with the New React Native Architecture._
+
+
+
+
+
---
## What's new in React 19 {/*whats-new-in-react-19*/}
@@ -247,14 +253,6 @@ The `use` API can only be called in render, similar to hooks. Unlike hooks, `use
For more information, see the docs for [`use`](/reference/react/use).
-
-
-#### Why can't I use async components on the client? {/*why-cant-i-use-async-components-on-the-client*/}
-
-TODO: we can't yet
-
-
-
### React Server Components (RSC) {/*new-feature-server-components*/}
Server Components are a new option that allows rendering components ahead of time, before bundling, in an environment separate from your application (the "server"). They can run once at build time, or can be run for each request to a web server.