Skip to content

Commit fde62b7

Browse files
authored
Merge pull request #36 from graphql-go/bug-fix
bug-fix-bubbletea-regression-fix
2 parents 8364b98 + f14a4f9 commit fde62b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bubbletea/bubbletea.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (b BubbleTea) Init() tea.Cmd {
2525
func (b BubbleTea) Update(msg tea.Msg) (tea.Model, tea.Cmd) { //nolint:golint,ireturn
2626
keyMsg, ok := msg.(tea.KeyMsg)
2727
if !ok {
28-
return b, tea.Quit
28+
return b, nil
2929
}
3030

3131
switch keyMsg.String() {

0 commit comments

Comments
 (0)