1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

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

View File

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