admin panel is working, needs to clear the terminal tho from the other things

This commit is contained in:
filipriec
2025-03-22 10:33:09 +01:00
parent c198297a5c
commit a58e976227

View File

@@ -58,7 +58,8 @@ impl EventHandler {
if intro_state.selected_option == 0 { if intro_state.selected_option == 0 {
app_state.ui.show_intro = false; app_state.ui.show_intro = false;
} else { } else {
self.command_message = "Admin panel coming soon".to_string(); app_state.ui.show_intro = false;
app_state.ui.show_admin = true;
} }
return Ok((false, String::new())); return Ok((false, String::new()));
} }