Skip to content

Commit

Permalink
Merge pull request #4507 from remarkablemark/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Mar 24, 2023
2 parents 1133bd8 + b1a1027 commit 36d2aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/usage/migrating-to-modern-redux.mdx
Expand Up @@ -481,7 +481,7 @@ import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'
export const api = createApi({
baseQuery: fetchBaseQuery({
// Fill in your own server starting URL here
url: '/'
baseUrl: '/'
}),
endpoints: build => ({})
})
Expand Down Expand Up @@ -520,7 +520,7 @@ import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'
export const api = createApi({
baseQuery: fetchBaseQuery({
// Fill in your own server starting URL here
url: '/'
baseUrl: '/'
}),
endpoints: build => ({
// highlight-start
Expand Down

0 comments on commit 36d2aef

Please sign in to comment.