cargo fix

This commit is contained in:
Priec
2025-08-22 15:49:33 +02:00
parent 1d94e82f4b
commit 310617d62b
14 changed files with 13 additions and 23 deletions

View File

@@ -53,7 +53,7 @@ pub fn render_ui(
render_background(f, f.area(), theme);
// --- START DYNAMIC LAYOUT LOGIC ---
let mut status_line_height = 1;
let status_line_height = 1;
#[cfg(feature = "ui-debug")]
{
if let Some(debug_state) = &app_state.debug_state {

View File

@@ -32,7 +32,7 @@ use crossterm::cursor::SetCursorStyle;
use crossterm::event as crossterm_event;
use tracing::{error, info, warn};
use tokio::sync::mpsc;
use std::time::{Instant, Duration};
use std::time::Instant;
#[cfg(feature = "ui-debug")]
use crate::state::app::state::DebugState;
#[cfg(feature = "ui-debug")]