You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The solution for the third challenge, "Fix debouncing," does not require a Ref. Moving the let timeoutID; to the top inside the DebouncedButton component will fix the debouncing. Either point this out in the explanation or make it re-render so the solution requires Ref.
Since code example does not use State, there's no re-rendering, and so there's no need to use Ref to remember anything across re-renders. The page mentions that Refs are not used often; although future-proof, I think the example should only use Ref when necessary.
The text was updated successfully, but these errors were encountered:
liy-che
changed the title
[Suggestion]:
[Suggestion]: Make clear why Ref was used in the solution
Mar 28, 2025
liy-che
changed the title
[Suggestion]: Make clear why Ref was used in the solution
[Suggestion]: Make clear why Ref was used in the third solution
Mar 28, 2025
Summary
The solution for the third challenge, "Fix debouncing," does not require a Ref. Moving the
let timeoutID;
to the top inside theDebouncedButton
component will fix the debouncing. Either point this out in the explanation or make it re-render so the solution requires Ref.Page
https://react.dev/learn/referencing-values-with-refs
Details
Since code example does not use State, there's no re-rendering, and so there's no need to use Ref to remember anything across re-renders. The page mentions that Refs are not used often; although future-proof, I think the example should only use Ref when necessary.
The text was updated successfully, but these errors were encountered: