Skip to content

Conversation

@kmonahan
Copy link
Collaborator

Closes #156. Also updates Storybook from 8.6.3 to 8.6.6, since that was tangling the React update.

async function NodeFull({ params }: { params: { slug: string[] } }) {
const { isEnabled } = draftMode();
async function NodeFull(props: { params: Promise<{ slug: string[] }> }) {
const params = await props.params;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Next's decision to make an async property getter is super bizarre.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, Next 15 definitely includes some choices

@kmonahan kmonahan merged commit 8d2ac67 into 2.x-RC Mar 20, 2025
@kmonahan kmonahan deleted the 156-next-and-react-update branch March 20, 2025 19:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

3 participants