Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Nov 16, 2023
1 parent dc78f6f commit 06f75a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/videos.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Redux maintainer Mark Erikson appeared on the "Learn with Jason" show to explain
title="Learn Modern Redux - Redux Toolkit, React-Redux Hooks, and RTK Query"
/>

## RTK Query Basics: Query Endpoints, Data Flow and TypeScript
## RTK Query Basics: Query Endpoints, Data Flow and TypeScript

A video course on RTK Query basics by Lenz Weber-Tronic, the creator of RTK Query.

Expand Down
3 changes: 2 additions & 1 deletion docs/usage/ConfiguringYourStore.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,8 @@ import rootReducer from './reducers'
export default function configureAppStore(preloadedState) {
const store = configureStore({
reducer: rootReducer,
middleware: (getDefaultMiddleware) => getDefaultMiddleware().prepend(loggerMiddleware),
middleware: getDefaultMiddleware =>
getDefaultMiddleware().prepend(loggerMiddleware),
preloadedState,
enhancers: [monitorReducersEnhancer]
})
Expand Down

0 comments on commit 06f75a3

Please sign in to comment.