Skip to content

Commit 2ce11ae

Browse files
authored
Change one-time code auth hint colors (#109)
1 parent e259dba commit 2ce11ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ui/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func (a App) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
158158
}
159159
if msg.Code != "" {
160160
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)})
161+
a.lines = appendLine(a.lines, styledLine{text: styles.SecondaryMessage.Render("One-time code: ") + styles.NimboMid.Render(msg.Code)})
162162
a.lines = appendLine(a.lines, styledLine{text: ""})
163163
}
164164
return a, nil

0 commit comments

Comments
 (0)