diff --git a/Cargo.lock b/Cargo.lock index 7d545e4..5e84b6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "client" -version = "0.2.5" +version = "0.3.0" dependencies = [ "async-trait", "common", @@ -458,7 +458,7 @@ dependencies = [ [[package]] name = "common" -version = "0.2.5" +version = "0.3.0" dependencies = [ "prost", "serde", @@ -2589,7 +2589,7 @@ dependencies = [ [[package]] name = "server" -version = "0.2.5" +version = "0.3.0" dependencies = [ "bcrypt", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 65c52ab..4a49281 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] # TODO: idk how to do the name, fix later # name = "Multieko2" -version = "0.2.5" +version = "0.3.0" edition = "2021" license = "GPL-3.0-or-later" authors = ["Filip Priečinský "] diff --git a/client/src/tui/functions/common/login.rs b/client/src/tui/functions/common/login.rs index cc99d57..5e72045 100644 --- a/client/src/tui/functions/common/login.rs +++ b/client/src/tui/functions/common/login.rs @@ -42,7 +42,6 @@ pub async fn save( } /// Reverts the login form fields to empty and returns to the previous screen (Intro). -/// This function is now named 'revert' to match the 'form' counterpart. pub async fn revert( auth_state: &mut AuthState, app_state: &mut AppState, @@ -53,9 +52,9 @@ pub async fn revert( auth_state.error_message = None; // Clear any previous error auth_state.set_has_unsaved_changes(false); // Fields are cleared, no unsaved changes - // Update app state to hide login and show the previous screen (Intro) - app_state.ui.show_login = false; - app_state.ui.show_intro = true; // Assuming Intro is the screen before login + // TODO REDIRECT is now disabled + // app_state.ui.show_login = false; + // app_state.ui.show_intro = true; "Login reverted".to_string() }