Remove and add todos

This commit is contained in:
Joscha 2022-09-25 19:37:45 +02:00
parent 4dde87d805
commit d5c0c94883
3 changed files with 3 additions and 1 deletions

View file

@ -16,6 +16,7 @@
// TODO Enable warn(unreachable_pub)?
// TODO Clean up use and manipulation of toss Pos and Size
// TODO Remove unnecessary Debug impls and compare compile times
mod config;
mod euph;

View file

@ -1,3 +1,5 @@
// TODO Reduce need to pass Terminal when only width db is needed
mod chat;
mod euph;
mod input;

View file

@ -264,7 +264,6 @@ impl EuphRoom {
}
async fn status_widget(&self, status: &RoomStatus) -> BoxedWidget {
// TODO Include unread message count
let room = self.chat.store().room();
let room_style = ContentStyle::default().bold().blue();
let mut info = Styled::new(format!("&{room}"), room_style);