Skip to content

Commit 3a10101

Browse files
committed
Move Troubleshooting under recipes and remove Other category
1 parent daf884b commit 3a10101

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

docs/faq/ImmutableData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ The store will still be updated with the new values for the root state, but beca
276276
**Documentation**
277277

278278
- [Recipes: Immutable Update Patterns](../recipes/structuring-reducers/ImmutableUpdatePatterns.md)
279-
- [Troubleshooting: Never mutate reducer arguments](../Troubleshooting.md#never-mutate-reducer-arguments)
279+
- [Troubleshooting: Never mutate reducer arguments](../recipes/Troubleshooting.md#never-mutate-reducer-arguments)
280280

281281
### Why does a reducer mutating the state prevent React-Redux from re-rendering a wrapped component?
282282

docs/faq/ReactRedux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Note that “updating data immutably” does _not_ mean that you must use [Immut
5454

5555
**Documentation**
5656

57-
- [Troubleshooting](../Troubleshooting.md)
57+
- [Troubleshooting](../recipes/Troubleshooting.md)
5858
- [React Redux: Troubleshooting](https://react-redux.js.org/troubleshooting)
5959
- [Recipes: Using the Object Spread Operator](../recipes/UsingObjectSpreadOperator.md)
6060
- [Recipes: Structuring Reducers - Prerequisite Concepts](../recipes/structuring-reducers/PrerequisiteConcepts.md)

docs/recipes/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ These are some use cases and code snippets to get you started with Redux in a re
2020
- [Isolating Redux Sub-Apps](IsolatingSubapps.md)
2121
- [Using Immutable.JS with Redux](UsingImmutableJS.md)
2222
- [Code Splitting](CodeSplitting.md)
23+
- [Troubleshooting](Troubleshooting.md)
2324
- [Structuring Reducers](structuring-reducers/StructuringReducers.md)
File renamed without changes.

docs/recipes/UsingImmutableJS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ This, together with its performance and rich API for data manipulation, is why I
156156

157157
**Documentation**
158158

159-
- [Troubleshooting: Nothing happens when I dispatch an action](../Troubleshooting.md#nothing-happens-when-i-dispatch-an-action)
159+
- [Troubleshooting: Nothing happens when I dispatch an action](./Troubleshooting.md#nothing-happens-when-i-dispatch-an-action)
160160

161161
## What are some opinionated Best Practices for using Immutable.JS with Redux?
162162

website/_redirects

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
/docs/recipes/reducers/InitializingState.html* /recipes/structuring-reducers/initializing-state:splat
129129

130130
/docs/Glossary.html* /understanding/thinking-in-redux/glossary:splat
131-
/docs/Troubleshooting.html* /troubleshooting:splat
131+
/docs/Troubleshooting.html* /recipes/troubleshooting:splat
132132

133133
# Unknown?
134134
/introduction/index.html /introduction/getting-started
@@ -153,3 +153,4 @@
153153
/introduction/prior-art /understanding/history-and-design/prior-art
154154

155155
/glossary /understanding/thinking-in-redux/glossary
156+
/troubleshooting /recipes/troubleshooting

website/sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ module.exports = {
6363
'recipes/isolating-redux-sub-apps',
6464
'recipes/using-immutablejs-with-redux',
6565
'recipes/code-splitting',
66+
'recipes/troubleshooting',
6667
{
6768
type: 'category',
6869
label: 'Structuring Reducers',
@@ -113,7 +114,6 @@ module.exports = {
113114
'faq/miscellaneous'
114115
],
115116
'Style Guide': ['style-guide/style-guide'],
116-
Other: ['troubleshooting'],
117117
'API Reference': [
118118
'api/api-reference',
119119
'api/createstore',

0 commit comments

Comments
 (0)