Skip to content

Commit

Permalink
installer: Go directly to next step once login
Browse files Browse the repository at this point in the history
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
  • Loading branch information
edouardparis committed Sep 6, 2024
1 parent 6826aa0 commit cc02ac0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/src/installer/step/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit cc02ac0

Please sign in to comment.