We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7207009 commit 4257e63Copy full SHA for 4257e63
cmd/root.go
@@ -64,6 +64,10 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
64
fetchModel, fetchCmd := m.fetch.Update(msg)
65
m.fetch = fetchModel.(github.FetchingModel)
66
return m, fetchCmd
67
+ case github.FetchFailedMsg:
68
+ fetchModel, fetchCmd := m.fetch.Update(msg)
69
+ m.fetch = fetchModel.(github.FetchingModel)
70
+ return m, fetchCmd
71
case github.SearchFinishedMsg:
72
searchModel, searchCmd := m.search.Update(msg)
73
m.search = searchModel.(github.SearchModel)
0 commit comments