You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/pages/guides/migrating-to-react-query-4.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,11 +132,11 @@ If you were importing anything from `'react-query/react'` directly in your proje
132
132
+ import { QueryClientProvider } from 'react-query/reactjs';
133
133
```
134
134
135
-
### `persistQueryClient` and its sister plugins are no longer expermental and have been renamed
135
+
### `persistQueryClient` and the corresponding persister plugins are no longer experimental and have been renamed
136
136
137
137
The plugins `createWebStoragePersistor` and `createAsyncStoragePersistor` have been renamed to [`createWebStoragePersister`](/plugins/createWebStoragePersister) and [`createAsyncStoragePersister`](/plugins/createAsyncStoragePersister) respectively. The interface `Persistor` in `persistQueryClient` has also been renamed to `Persister`. Checkout [this stackexchange](https://english.stackexchange.com/questions/206893/persister-or-persistor) for the motivation of this change.
138
138
139
-
Since these plugins are no longer experimental, there import paths have also been updated:
139
+
Since these plugins are no longer experimental, their import paths have also been updated:
140
140
141
141
```diff
142
142
- import { persistQueryClient } from 'react-query/persistQueryClient-experimental'
0 commit comments