We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c83de commit c00e52fCopy full SHA for c00e52f
node_package/src/clientStartup.ts
@@ -38,7 +38,9 @@ export async function clientStartup(context: Context): Promise<void> {
38
39
// force loaded components and stores are rendered and hydrated immediately
40
renderOrHydrateForceLoadedComponents();
41
- await hydrateForceLoadedStores();
+ // The hydration process can handle the concurrent hydration of components and stores,
42
+ // so awaiting this isn't necessary.
43
+ void hydrateForceLoadedStores();
44
45
// Other components and stores are rendered and hydrated when the page is fully loaded
46
await onPageLoaded(reactOnRailsPageLoaded);
0 commit comments