authscape 1.0.410 → 1.0.412
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -7
- package/package.json +1 -1
- package/src/components/AuthScapeApp.js +4 -4
package/index.js
CHANGED
|
@@ -156,13 +156,12 @@ function AuthScapeApp(_ref) {
|
|
|
156
156
|
case 6:
|
|
157
157
|
setFrontEndLoadedState(true);
|
|
158
158
|
frontEndLoaded.current = true;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
case 11:
|
|
159
|
+
|
|
160
|
+
// if (enforceLoggedIn)
|
|
161
|
+
// {
|
|
162
|
+
// await authService().login();
|
|
163
|
+
// }
|
|
164
|
+
case 8:
|
|
166
165
|
case "end":
|
|
167
166
|
return _context2.stop();
|
|
168
167
|
}
|
package/package.json
CHANGED
|
@@ -116,10 +116,10 @@ export function AuthScapeApp ({Component, layout, pageProps, muiTheme = {}, enfo
|
|
|
116
116
|
setFrontEndLoadedState(true);
|
|
117
117
|
frontEndLoaded.current = true;
|
|
118
118
|
|
|
119
|
-
if (enforceLoggedIn)
|
|
120
|
-
{
|
|
121
|
-
|
|
122
|
-
}
|
|
119
|
+
// if (enforceLoggedIn)
|
|
120
|
+
// {
|
|
121
|
+
// await authService().login();
|
|
122
|
+
// }
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
if (queryCode != null)
|