diff --git a/docs/tutorials/essentials/part-8-rtk-query-advanced.md b/docs/tutorials/essentials/part-8-rtk-query-advanced.md index 6d15c3635f..6fba8589d9 100644 --- a/docs/tutorials/essentials/part-8-rtk-query-advanced.md +++ b/docs/tutorials/essentials/part-8-rtk-query-advanced.md @@ -1266,9 +1266,9 @@ export const Navbar = () => { } ``` -Almost there! We're fetching initial notifications via RTK Query, tracking read status on the client side, and we've got the infrastructure set up to force new notifications via a websocket. +Almost there! We're fetching initial notifications via RTK Query, tracking read status on the client side, and we've got the infrastructure set up to force new notifications via a websocket. But, **if we click "Refresh Notifications" now, it will throw an error - we don't have the websocket handling implemented yet!** -Now we can implement the actual streaming updates logic. +So, let's implement the actual streaming updates logic. #### Implementing Streaming Updates diff --git a/website/static/img/tutorials/essentials/devtools-cached-invalidation-refetching.png b/website/static/img/tutorials/essentials/devtools-cached-invalidation-refetching.png index 208e324b6c..e580322973 100644 Binary files a/website/static/img/tutorials/essentials/devtools-cached-invalidation-refetching.png and b/website/static/img/tutorials/essentials/devtools-cached-invalidation-refetching.png differ diff --git a/website/static/img/tutorials/essentials/devtools-cached-requests.png b/website/static/img/tutorials/essentials/devtools-cached-requests.png index 3ed35c5b41..4f77deefdc 100644 Binary files a/website/static/img/tutorials/essentials/devtools-cached-requests.png and b/website/static/img/tutorials/essentials/devtools-cached-requests.png differ diff --git a/website/static/img/tutorials/essentials/disabled-posts-fetching.png b/website/static/img/tutorials/essentials/disabled-posts-fetching.png index 4bcf8ff650..2909bcfe32 100644 Binary files a/website/static/img/tutorials/essentials/disabled-posts-fetching.png and b/website/static/img/tutorials/essentials/disabled-posts-fetching.png differ