We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e259dba commit 2ce11aeCopy full SHA for 2ce11ae
internal/ui/app.go
@@ -158,7 +158,7 @@ func (a App) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
158
}
159
if msg.Code != "" {
160
a.lines = appendLine(a.lines, styledLine{text: ""})
161
- a.lines = appendLine(a.lines, styledLine{text: styles.Secondary.Render("One-time code: ") + styles.NimboMid.Render(msg.Code)})
+ a.lines = appendLine(a.lines, styledLine{text: styles.SecondaryMessage.Render("One-time code: ") + styles.NimboMid.Render(msg.Code)})
162
163
164
return a, nil
0 commit comments