diff --git a/src/application.py b/src/application.py index cbda40e..4b3f8cd 100644 --- a/src/application.py +++ b/src/application.py @@ -49,7 +49,9 @@ async def on_mount(self) -> None: self.connection_label.update(f"[bold green]Connected to:[/] {node_name}") for name in self.conn.get_long_names(): - await self.contact_list.append(ListItem(Label(name))) + # Don't select our own node + if name != node_name: + await self.contact_list.append(ListItem(Label(name))) def action_toggle_dark(self) -> None: self.theme = (