We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
> Try passing `response` into `useEffect`
Hi @alex-cory , got the same question. I'm wondering why adding response to useEffect/useCallback dependency won't cause re-render?
Let's say I have three api calls inside the componet
const { loading, response, get, put } = useFetch(); const call1= useCallback(async () => { const data= await get('endpoint1'); if (response.ok) { } }, [get, response]); const call2= useCallback(async () => { const data= await get('endpoint2'); if (response.ok) { } }, [get, response]); useEffect(() => { call2(); }, [call2]);
when Call1 fired, the response will be changing, thus will cause a re-render on call2 thus then useEffect will be called again?
Originally posted by @iqoOopi in #87 (comment)
The text was updated successfully, but these errors were encountered:
try passing response.ok to dependency array
response.ok
Sorry, something went wrong.
No branches or pull requests
Hi @alex-cory , got the same question. I'm wondering why adding response to useEffect/useCallback dependency won't cause re-render?
Let's say I have three api calls inside the componet
when Call1 fired, the response will be changing, thus will cause a re-render on call2 thus then useEffect will be called again?
Originally posted by @iqoOopi in #87 (comment)
The text was updated successfully, but these errors were encountered: