fixing more errors, last to go

This commit is contained in:
filipriec
2025-04-07 22:46:00 +02:00
parent 10e9c3ead0
commit d7d7fd614b
7 changed files with 40 additions and 37 deletions

View File

@@ -14,7 +14,6 @@ pub async fn handle_edit_event(
auth_state: &mut AuthState,
ideal_cursor_column: &mut usize,
command_message: &mut String,
is_saved: &mut bool,
current_position: &mut u64,
total_count: u64,
grpc_client: &mut GrpcClient,
@@ -42,7 +41,6 @@ pub async fn handle_edit_event(
action,
auth_state, // Concrete AuthState
grpc_client,
is_saved,
current_position,
total_count
).await
@@ -51,7 +49,6 @@ pub async fn handle_edit_event(
action,
form_state, // Concrete FormState
grpc_client,
is_saved,
current_position,
total_count
).await
@@ -68,7 +65,6 @@ pub async fn handle_edit_event(
auth_state, // Full access to AuthState fields
ideal_cursor_column,
grpc_client,
is_saved,
current_position,
total_count
).await
@@ -79,7 +75,6 @@ pub async fn handle_edit_event(
form_state, // Full access to FormState fields
ideal_cursor_column,
grpc_client,
is_saved,
current_position,
total_count
).await
@@ -95,7 +90,6 @@ pub async fn handle_edit_event(
auth_state,
ideal_cursor_column,
grpc_client,
is_saved,
current_position,
total_count
).await
@@ -106,7 +100,6 @@ pub async fn handle_edit_event(
form_state,
ideal_cursor_column,
grpc_client,
is_saved,
current_position,
total_count
).await