-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
Describe the bug
Not sure if this is a bug or if I'm doing something incorrectly but when using SSR hydration/dehydration prefetching based on the docs, the first request will set initial data for a query correctly, but when routing to the same route but with a different param the cache isn't updated with the new prefetched value.
To Reproduce
Steps to reproduce the behavior:
- Go to https://ctwew.sse.codesandbox.io/set1
- Open up the dev tools and see that the data returned from getServerSideProps and the data displayed is the same.
- Click on toggle set, this will perform a client side route change and will call getServeSideProps as an api call.
- You will notice that the data onscreen will still have "dataSet: set1", the url will be "/set2". However if you check the console you will see that the data contains "dataSet: set2"
Expected behavior
I would expect the data from getServerSideProps to update the cache and the components using the data to be rerendered with the correct values.
Data returned from getServerSideProps on the initial page load.

Data returned from getServerSideProps on the route change.

Desktop (please complete the following information):
- OS: macOs
- Browser: chrome
- Version: 2.13.1
Additional context
I did notice the force option for the prefetch query options and have tried it with "force: true" but that didn't work either.