This commit is contained in:
Joscha 2022-03-02 01:39:30 +01:00
parent ffb43c34ec
commit d5394476c6
2 changed files with 5 additions and 2 deletions

View file

@ -123,7 +123,7 @@ impl RoomInfo {
match &mut self.main {
Main::Empty => {}
Main::Connecting => {
let text = "Connecing...";
let text = "Connecting...";
let area = layout::centered(text.width() as u16, 1, area);
frame.render_widget(Paragraph::new(Span::styled(text, styles::title())), area);
}