Skip to content

Commit

Permalink
feat: remove q for canceling deploy (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed May 15, 2024
1 parent 20c2673 commit 18cde5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/bundle/tui/deploy/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func (m *Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
quitMsg := tea.Println(tui.IndentStyle.Render("\n👋 Deployment cancelled"))
return m, tea.Sequence(quitMsg, tea.Println(), tea.Quit)
}
case "ctrl+c", "q":
case "ctrl+c":
return m, tea.Sequence(tea.Quit)

case "up":
Expand Down

0 comments on commit 18cde5a

Please sign in to comment.