Skip to content

Commit

Permalink
clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed May 29, 2024
1 parent 0db0284 commit 2528e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/experimental-nextjs-app-support/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export function ClientChild({ queryRef }: { queryRef: QueryRef<TQueryData> }) {
#### Caveat

Keep in mind that this will look like a "new network request" to your Client Component, so make sure that the data you pass from your Server Components is not outdated, e.g. because of other caching layers you might be using.
Keep in mind that this will look like a "current network request" to your Client Component and as such will update data that is already in your Client Component cache, so make sure that the data you pass from your Server Components is not outdated, e.g. because of other caching layers you might be using, like the Next.js fetch cache.

### Resetting singletons between tests.

Expand Down

0 comments on commit 2528e36

Please sign in to comment.