@acorex/connectivity 20.3.0-next.15 → 20.3.0-next.17
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.
|
@@ -628,6 +628,8 @@ class AXCAPIOidcStrategy extends AXPAuthStrategy {
|
|
|
628
628
|
.join('&');
|
|
629
629
|
const authorizeUrl = `${authorizeEndpoint}?${queryParams}`;
|
|
630
630
|
window.location.href = authorizeUrl;
|
|
631
|
+
// Prevent further execution by waiting on a never-resolving Promise after redirect
|
|
632
|
+
await new Promise(() => { });
|
|
631
633
|
}
|
|
632
634
|
}
|
|
633
635
|
catch (error) {
|