Replies: 1 comment 5 replies
-
it doesn’t achieve much. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created a custom hook that has both
initialData
andplaceholderData
:I added
initialData
because I fetch the data in a Server Component in Next.js app and it's available to populate the cache on the client. Also, I like how TypeScript understands that data will always exist:I also added
placeholderData: keepPreviousData
because I'd like to show the user the previous data while the new data is being fetched.However, when I change the query from "b" to "bb", I see:
Why is
highlightQuery
updated before we get the result?Is it ok to use
initialData
withpreviousData
in the sameuseQuery
?This article by @TkDodo implies that we should use one or the other 🤔
Here is a CodeSandbox that demonstrates the actual "real-life" issue.
Initially, "b" is highlighted. When I update the query to "bb" you can see that the highlight disappears (because
highlightQuery
is updated before we get the result).What's the best way to fix this?
Beta Was this translation helpful? Give feedback.
All reactions