From cc02ac043b647b22b0533dec3f99cbcf62e7ee8f Mon Sep 17 00:00:00 2001 From: edouardparis Date: Fri, 6 Sep 2024 10:20:39 +0200 Subject: [PATCH] installer: Go directly to next step once login 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 --- gui/src/installer/step/backend.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/src/installer/step/backend.rs b/gui/src/installer/step/backend.rs index 6ab85b7c..2386e80c 100644 --- a/gui/src/installer/step/backend.rs +++ b/gui/src/installer/step/backend.rs @@ -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 {