fix missing credentials step (#23440)

This commit is contained in:
Bram Kragten 2024-12-24 15:26:43 +01:00 committed by GitHub
parent c3507abd9c
commit 7150016375
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,6 @@ class StepFlowAbort extends LitElement {
} }
private async _handleMissingCreds() { private async _handleMissingCreds() {
this._flowDone();
// Prompt to enter credentials and restart integration setup // Prompt to enter credentials and restart integration setup
showAddApplicationCredentialDialog(this.params.dialogParentElement!, { showAddApplicationCredentialDialog(this.params.dialogParentElement!, {
selectedDomain: this.domain, selectedDomain: this.domain,
@ -64,6 +63,7 @@ class StepFlowAbort extends LitElement {
}); });
}, },
}); });
this._flowDone();
} }
private _flowDone(): void { private _flowDone(): void {