Await `this.getScimEndpointUrl()` (#8532)

This commit is contained in:
Addison Beck 2024-03-28 14:12:52 -05:00 committed by GitHub
parent 3d19e3489c
commit b70897a441
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ export class ScimComponent implements OnInit {
try {
const response = await this.rotatePromise;
this.formData.setValue({
endpointUrl: this.getScimEndpointUrl(),
endpointUrl: await this.getScimEndpointUrl(),
clientSecret: response.apiKey,
});
this.platformUtilsService.showToast("success", null, this.i18nService.t("scimApiKeyRotated"));