diff --git a/client/src/functions/modes/edit/auth_e.rs b/client/src/functions/modes/edit/auth_e.rs index 3aa38ca..2becc47 100644 --- a/client/src/functions/modes/edit/auth_e.rs +++ b/client/src/functions/modes/edit/auth_e.rs @@ -61,10 +61,10 @@ pub async fn execute_edit_action( key: KeyEvent, state: &mut S, ideal_cursor_column: &mut usize, - _grpc_client: &mut GrpcClient, - _is_saved: &mut bool, - _current_position: &mut u64, - _total_count: u64, + grpc_client: &mut GrpcClient, + is_saved: &mut bool, + current_position: &mut u64, + total_count: u64, ) -> Result> { match action { "insert_char" => { diff --git a/client/src/tui/functions/common/login.rs b/client/src/tui/functions/common/login.rs index 052d7cf..2b8ac0b 100644 --- a/client/src/tui/functions/common/login.rs +++ b/client/src/tui/functions/common/login.rs @@ -80,7 +80,7 @@ pub async fn save( /// Reverts the login form fields to empty and returns to the previous screen (Intro). pub async fn revert( auth_state: &mut AuthState, - _app_state: &mut AppState, // Prefix unused variable + app_state: &mut AppState, ) -> String { // Clear the input fields auth_state.username.clear();