We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8d275a commit cca3b0dCopy full SHA for cca3b0d
1 file changed
src/ui.rs
@@ -42,11 +42,7 @@ pub fn render(app: &mut App, f: &mut Frame) {
42
if app.display_items.is_empty() {
43
ui_block::welcome::render(app, f, table_layout[0]);
44
} else {
45
- if app.loading {
46
- ui_block::loader::render(app, f, table_layout[0]);
47
- } else {
48
- ui_block::instances_table::render(app, f, table_layout[0]);
49
- }
+ ui_block::instances_table::render(app, f, table_layout[0]);
50
}
51
ui_block::footer::render(app, f, main_layout[2]);
52
0 commit comments