-
Notifications
You must be signed in to change notification settings - Fork 7.7k
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
[Beta] Suggest/referencing values with refs #5097
base: main
Are you sure you want to change the base?
Conversation
Size Changes📦 Next.js Bundle AnalysisThis analysis was generated by the next.js bundle analysis action 🤖 This PR introduced no changes to the javascript bundle 🙌 |
thanks, but the Prettier changes are not needed. can you please undo them so I can see what you're changing? we don't run Prettier on Markdown |
sorry, I don't know how to configure prettier correctly, but we don't run it on Markdown |
@gaearon No worries, I'll configure it to ignore markdown with another PR, and update this one accordingly. |
3c12750
to
4496653
Compare
Content markdown ignored in #5098 |
I've forced pushed up just a single commit with the proposed changes. |
4496653
to
bee4a4b
Compare
bee4a4b
to
c88aef5
Compare
c88aef5
to
38260ca
Compare
@@ -641,7 +639,7 @@ export default function Chat() { | |||
return ( | |||
<> | |||
<input | |||
value={text} | |||
defaultValue={textRef.current} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem here is that this example reads from a ref during render. Even if that specific prop is only relevant once, the overall pattern is still problematic. React might even warn if defaultValue
changes. But the biggest problem is reading from a ref during render which we probably shouldn't showcase.
Is there a reason we need the input to be controlled?