Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add stable fn notes to useMemo, useTransition, useState, and useReducer #7181

Merged
merged 1 commit into from
Sep 22, 2024

Conversation

rickhanlonii
Copy link
Member

useCallback has this, but not useState, useReducer, useMemo, or useTransition.

Copy link

vercel bot commented Sep 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
19-react-dev ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 22, 2024 5:10pm
react-dev ✅ Ready (Inspect) Visit Preview Sep 22, 2024 5:10pm

Copy link

Size changes

📦 Next.js Bundle Analysis for react-dev

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

@rickhanlonii rickhanlonii merged commit c003ac4 into reactjs:main Sep 22, 2024
6 checks passed
@rickhanlonii rickhanlonii deleted the rh/stability branch September 22, 2024 17:19
}, [roomId]); // ✅ Only changes when roomId changes

useEffect(() => {
const options = createOptions();

Choose a reason for hiding this comment

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

I think this is leftover from the useCallback example.

const connection = createConnection(options);
connection.connect();
return () => connection.disconnect();
}, [options]); // ✅ Only changes when createOptions changes

Choose a reason for hiding this comment

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

// ✅ Only changes when cached options object changes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants