gui: Remove redundant "or" when filling up xpub in installer.

This commit is contained in:
Antoine Poinsot 2023-02-05 15:21:10 +01:00
parent e8d0f492b9
commit a7f2ca1cbe
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -1133,11 +1133,7 @@ pub fn edit_key_modal<'a>(
Row::new()
.spacing(15)
.width(Length::Fill)
.push(
text("Or connect a hardware wallet")
.bold()
.width(Length::Fill),
)
.push(text("Connect a hardware wallet").bold().width(Length::Fill))
.push(button::border(None, "Refresh").on_press(Message::Reload))
.align_items(Alignment::Center),
)