Merge #1278: installer: Go directly to next step once login

cc02ac043b647b22b0533dec3f99cbcf62e7ee8f installer: Go directly to next step once login (edouardparis)

Pull request description:

  Once the user is connected we redirect him to
  the next step in the install process, but
  we keep the Connected state in case the user
  want to edit email after clicking on Previous

  As discussed in #1240

ACKs for top commit:
  edouardparis:
    Self-ACK cc02ac043b647b22b0533dec3f99cbcf62e7ee8f

Tree-SHA512: c2b65288fd8fcb07edf021ad45391fc1761d185b7da48985a2108be5dce5a1f744fa37da8c667cb140df21ce2c4403492fab58c11098a3695c5c4b3496219346
This commit is contained in:
edouardparis 2024-09-06 10:56:21 +02:00
commit adaa13275c
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -252,6 +252,7 @@ impl Step for RemoteBackendLogin {
email: email.clone(),
remote_backend,
};
return Command::perform(async move {}, |_| Message::Next);
}
Err(e) => {
if let Error::Auth(AuthError { http_status, .. }) = e {