We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e8195 commit 3c0f9a2Copy full SHA for 3c0f9a2
node_package/src/StoreRegistry.js
@@ -40,10 +40,10 @@ export default {
40
41
if (storeKeys.length === 0) {
42
const msg = 'There are no stores hydrated and you are requesting the store ' +
43
- `${name}. This can happen if you are server rendering and either you do not call ` +
+ `${name}. This can happen if you are server rendering and either \nyou do not call ` +
44
"redux_store near the top of your controller action's view (not the layout) " +
45
- 'and before any call to react_component or you do not render ' +
46
- '`redux_store_hydration_data` anywhere on your page';
+ 'and before any call to react_component \nor you do not render ' +
+ 'redux_store_hydration_data anywhere on your page';
47
throw new Error(msg);
48
}
49
0 commit comments