Skip to content

Commit 4f12a8d

Browse files
committed
- fix busted links
1 parent 25bf095 commit 4f12a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage/rtk-query/migrating-to-rtk-query.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export const { useGetPokemonByNameQuery } = api
349349

350350
#### Connecting our Api to the store
351351

352-
Now that we have our api definition created, we need to hook it up to our store. In order to do that, we will need to use the [`reducerPath`](../../api/rtk-query/redux-integration.mdx#reducerpath) and [`middleware`](../../api/rtk-query/redux-integration.mdx#middleware) properties from our created `api`. This will allow the store to process the internal actions that the generated hook uses, allows the generated API logic to find the state correctly, and adds the logic for managing caching, invalidation, subscriptions, polling, and more.
352+
Now that we have our api definition created, we need to hook it up to our store. In order to do that, we will need to use the [`reducerPath`](../../api/rtk-query/created-api/redux-integration.mdx#reducerpath) and [`middleware`](../../api/rtk-query/created-api/redux-integration.mdx#middleware) properties from our created `api`. This will allow the store to process the internal actions that the generated hook uses, allows the generated API logic to find the state correctly, and adds the logic for managing caching, invalidation, subscriptions, polling, and more.
353353

354354
```ts title="src/store.ts"
355355
// file: src/services/pokemonSlice.ts noEmit

0 commit comments

Comments
 (0)