Skip to content

Commit

Permalink
fixed spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
ardevd committed Feb 7, 2024
1 parent c55705a commit 6fc99aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/tui/pay_invoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ func (m *PayInvoiceModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {

var cmds []tea.Cmd
// Tick the spinner
m.spinner, _ = m.spinner.Update(msg)
m.spinner, cmd = m.spinner.Update(msg)
cmds = append(cmds, cmd)

// Process the form
if m.form != nil {
Expand Down

0 comments on commit 6fc99aa

Please sign in to comment.