moved form.rs into the state where it really belongs to

This commit is contained in:
filipriec
2025-03-25 21:23:52 +01:00
parent 45fff34c4c
commit 4ced1a36d4
15 changed files with 17 additions and 13 deletions

View File

@@ -6,7 +6,8 @@ use crate::tui::controls::CommandHandler;
use crate::tui::terminal::EventReader;
use crate::config::colors::themes::Theme;
use crate::config::binds::config::Config;
use crate::ui::handlers::{form::FormState, render::render_ui};
use crate::ui::handlers::render::render_ui;
use crate::state::pages::form::FormState;
use crate::modes::handlers::event::EventHandler;
use crate::state::state::AppState;
use crate::components::admin::{admin_panel::AdminPanelState};