From baab72eaf218a7a3e7801eabe0d13c761d986bd6 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Thu, 13 Jul 2023 11:23:04 -0400 Subject: [PATCH] Found another missing await. (#5819) --- libs/common/src/platform/services/environment.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/platform/services/environment.service.ts b/libs/common/src/platform/services/environment.service.ts index 7b48c9d6eb..e77f259c12 100644 --- a/libs/common/src/platform/services/environment.service.ts +++ b/libs/common/src/platform/services/environment.service.ts @@ -293,7 +293,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction { } } else { // If we are setting the region to EU or US, clear the self-hosted URLs - this.stateService.setEnvironmentUrls(new EnvironmentUrls()); + await this.stateService.setEnvironmentUrls(new EnvironmentUrls()); if (region === Region.EU) { this.setUrlsInternal(this.euUrls); } else if (region === Region.US) {