This commit is contained in:
filipriec
2025-08-20 11:36:56 +02:00
parent 589220a2ba
commit 26053a5fd8
3 changed files with 0 additions and 6 deletions

View File

@@ -22,7 +22,6 @@ pub fn render_add_table(
app_state: &AppState,
add_table_state: &mut AddTableState,
is_edit_mode: bool, // Determines if canvas inputs are in edit mode
highlight_state: &HighlightState, // For text highlighting in canvas
) {
// --- Configuration ---
// Threshold width to switch between wide and narrow layouts

View File

@@ -28,7 +28,6 @@ pub fn render_login(
login_state: &LoginState,
app_state: &AppState,
is_edit_mode: bool,
highlight_state: &HighlightState,
) {
// Main container
let block = Block::default()

View File

@@ -33,7 +33,6 @@ pub fn render_register(
state: &RegisterState,
app_state: &AppState,
is_edit_mode: bool,
highlight_state: &HighlightState,
) {
let block = Block::default()
.borders(Borders::ALL)
@@ -59,9 +58,6 @@ pub fn render_register(
])
.split(inner_area);
// --- FORM RENDERING (Using canvas library directly) ---
let canvas_highlight_state = convert_highlight_state(highlight_state);
// Wrap RegisterState in FormEditor
let editor = FormEditor::new(state.clone());