We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba9fba commit feb230dCopy full SHA for feb230d
exercises/02.latest-ref/01.problem.ref/index.tsx
@@ -21,7 +21,7 @@ function useDebounce<Callback extends (...args: Array<unknown>) => unknown>(
21
// 🐨 create a latest ref (via useRef and useEffect) here
22
23
// use the latest version of the callback here:
24
- // 💰 you'll need to pass an annonymous function to debounce. Do *not*
+ // 💰 you'll need to pass an anonymous function to debounce. Do *not*
25
// simply change this to `debounce(latestCallbackRef.current, delay)`
26
// as that won't work. Can you think of why?
27
return useMemo(() => debounce(callback, delay), [callback, delay])
0 commit comments