Skip to content

Commit

Permalink
fix: fixed with for peers count ui
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sirotin committed Jul 14, 2024
1 parent 7c29fc9 commit 066a286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/view/components/wakustatusview/wakuStatusView.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (m Model) View() string {
marker = dangerStyle.Render(marker)
}

text := fmt.Sprintf(" Waku: %d peer(s)", m.status.PeersCount)
text := fmt.Sprintf(" Waku: %2d peer(s)", m.status.PeersCount)

return lipgloss.JoinHorizontal(lipgloss.Left, marker, text)
}

0 comments on commit 066a286

Please sign in to comment.