This commit is contained in:
filipriec
2025-04-18 21:11:49 +02:00
parent ef3ecfc73f
commit a0467d17a8
19 changed files with 18 additions and 19 deletions

View File

@@ -10,7 +10,7 @@ use crate::tui::terminal::core::TerminalCore;
use crate::tui::functions::common::form::{save, revert};
use crate::modes::handlers::event::EventOutcome;
use crate::tui::functions::common::form::SaveOutcome;
use anyhow::{Context, Result};
use anyhow::Result;
pub async fn handle_command_event(
key: KeyEvent,

View File

@@ -3,7 +3,7 @@ use crate::tui::terminal::core::TerminalCore;
use crate::state::app::state::AppState;
use crate::state::pages::{form::FormState, auth::LoginState, auth::RegisterState};
use crate::state::pages::canvas_state::CanvasState;
use anyhow::{Context, Result};
use anyhow::Result;
pub struct CommandHandler;