chore: unused imports

This commit is contained in:
Jeremy Wall 2024-11-30 18:21:18 -05:00
parent ae8366b16e
commit f196879fb0

View File

@ -7,9 +7,9 @@ use anyhow::Result;
use crossterm::event::{self, Event, KeyCode, KeyEventKind, KeyModifiers}; use crossterm::event::{self, Event, KeyCode, KeyEventKind, KeyModifiers};
use ratatui::{ use ratatui::{
buffer::Buffer, buffer::Buffer,
layout::{Constraint, Flex, Layout, Rect}, layout::{Constraint, Flex, Layout},
style::{Modifier, Style}, style::{Modifier, Style},
widgets::{Block, Widget}, widgets::Block,
}; };
use tui_prompts::{State, Status, TextPrompt, TextState}; use tui_prompts::{State, Status, TextPrompt, TextState};
use tui_textarea::{CursorMove, TextArea}; use tui_textarea::{CursorMove, TextArea};
@ -20,7 +20,7 @@ pub mod render;
mod test; mod test;
use cmd::Cmd; use cmd::Cmd;
use render::{viewport::ViewportState, Viewport}; use render::viewport::ViewportState;
#[derive(Default, Debug, PartialEq, Clone)] #[derive(Default, Debug, PartialEq, Clone)]
pub enum Modality { pub enum Modality {