Remove unused button

This commit is contained in:
Piotr Siuszko 2022-09-25 21:35:56 +02:00
parent 8aa4568ad9
commit 034f05eeba
1 changed files with 1 additions and 11 deletions

View File

@ -275,7 +275,7 @@ impl HubClient {
body.rows(text_height, 1, |_, mut row| {
row.col(|ui| {
add_header(ui);
});
});row.col(|_ui| {});
row.col(|ui| {
ui.vertical_centered_justified(|ui| {
ui.add_space(VERTICAL_SPACING);
@ -286,16 +286,6 @@ impl HubClient {
{}
});
});
row.col(|ui| {
ui.vertical_centered_justified(|ui| {
ui.add_space(VERTICAL_SPACING);
if ui
.button("Create new")
.on_hover_text("Not implemented yet")
.clicked()
{}
});
});
});
});
}