Describe the bug
In tui/email_view.go:326-354, crypto status and shortcuts strings are built with +=:
cryptoStatus += lipgloss.NewStyle()...Render(" [PGP: π Encrypted]")
shortcuts += " β’ " + pk.Key + ": " + pk.Description
shortcuts += " β’ " + m.pluginStatus
To reproduce
Not a crash β code quality and minor performance issue.
Expected behavior
Use strings.Builder for building crypto status and shortcuts strings.
Describe the bug
In tui/email_view.go:326-354, crypto status and shortcuts strings are built with
+=:To reproduce
Not a crash β code quality and minor performance issue.
Expected behavior
Use
strings.Builderfor building crypto status and shortcuts strings.