You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Defer the initialization of the extension until the application loads. Why ?
76
+
// Because some of the applications may be huge in size and take a lot of time to load.
77
+
// If the extension initialization process kicks-in before the app loads, we are trapped inside the error state.
78
+
// With this, users can configure a timeout value for initialization of the extension using the observer hook
79
+
// Default value for the timeout is 2 sec.
80
+
81
+
// We need to resolve the promise after one sec. to make sure we have the updated __REACT_PERF_DEVTOOL_GLOBAL_STORE__ object otherwise we might end up with null
0 commit comments