Revert "Add redirect_uri to each interaction with login flow (#13389)" (#13504)

This commit is contained in:
Paulus Schoutsen 2022-08-29 14:23:40 -04:00 committed by GitHub
parent e74fd5fcdc
commit 3648c8c07a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,11 +360,7 @@ class HaAuthFlow extends litLocalizeLiteMixin(LitElement) {
}
this._submitting = true;
const postData = {
...this._stepData,
client_id: this.clientId,
redirect_uri: this.redirectUri,
};
const postData = { ...this._stepData, client_id: this.clientId };
try {
const response = await fetch(`/auth/login_flow/${this._step.flow_id}`, {