Skip to content

Commit

Permalink
Fix a few error View()s
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidS-ovm committed May 13, 2024
1 parent 342e06d commit 0a7dece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/tea_ensuretoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Then enter the code:
case fatalError:
if msg.id == m.spinner.ID() {
m.status = taskStatusError
m.title = fmt.Sprintf("Ensuring Token Error: %v", msg.err)
m.title = markdownToString(fmt.Sprintf("Ensuring Token Error: %v", msg.err))
}
return m, nil
default:
Expand Down
2 changes: 1 addition & 1 deletion cmd/tea_initialisesources.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (m initialiseSourcesModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
case fatalError:
if msg.id == m.spinner.ID() {
m.status = taskStatusError
m.title = fmt.Sprintf("Error while configuring AWS Access: %v", msg.err)
m.title = markdownToString(fmt.Sprintf("> error while configuring AWS access: %v", msg.err))
}
default:
var taskCmd tea.Cmd
Expand Down

0 comments on commit 0a7dece

Please sign in to comment.