cargo fix

This commit is contained in:
filipriec
2025-03-31 10:24:20 +02:00
parent ac833294c4
commit 94eea47b76
5 changed files with 2 additions and 9 deletions

View File

@@ -10,8 +10,7 @@ use ratatui::{
layout::{Alignment, Constraint, Direction, Layout, Rect, Margin},
style::{Style, Modifier, Color}, // Removed unused Color import
widgets::{Block, BorderType, Borders, Paragraph},
Frame,
text::Line, // Removed unused Span import
Frame, // Removed unused Span import
};
pub fn render_login(

View File

@@ -1,7 +1,7 @@
// src/components/common/dialog.rs
use ratatui::{
layout::{Constraint, Direction, Layout, Rect, Margin},
style::{Color, Modifier, Style},
style::{Modifier, Style},
widgets::{Block, BorderType, Borders, Paragraph},
Frame,
text::{Text, Line, Span}

View File

@@ -8,8 +8,4 @@ pub mod auth;
pub mod ui_service;
pub use grpc_client::*;
pub use adresar::*;
pub use table::*;
pub use profile::*;
pub use auth::*;
pub use ui_service::*;

View File

@@ -3,7 +3,6 @@
use crate::services::grpc_client::GrpcClient;
use crate::state::pages::form::FormState;
use crate::state::state::AppState;
use common::proto::multieko2::adresar::AdresarResponse;
pub struct UiService;

View File

@@ -1,7 +1,6 @@
// src/tui/functions/form.rs
use crate::state::pages::form::FormState;
use crate::services::grpc_client::GrpcClient;
use common::proto::multieko2::adresar::AdresarResponse;
pub async fn handle_action(
action: &str,