-
I have an input. On every change to the input, I want to call an API. Here's a simplified version of the code:
and here's the full version:
The problem is: if I put |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I'm silly. The problem was not with The full code was:
Originally, I had However, I also swear my minimal reproduction was broken at one point. I think there was some version of the minimal reproduction that had a I'm still not sure when to put a |
Beta Was this translation helpful? Give feedback.
-
I'm also experiencing this issue when including I don't seem to have issues if I include |
Beta Was this translation helpful? Give feedback.
I'm silly. The problem was not with
useFetcher
at all.The full code was:
Originally, I had
const debouncedUrl = useDebouced(url, 250);
-- which was bad because theuseDebounce
hook returns an array.However, I also swear my minimal reproduction was broken at one point. I think there was some version of the minimal …