diff --git a/main.go b/main.go index 47c44cb..98cee72 100644 --- a/main.go +++ b/main.go @@ -87,8 +87,7 @@ func (g gol) Update(msg tea.Msg) (tea.Model, tea.Cmd) { case "ctrl+c", "q": return g, tea.Quit case " ": - g.Life() - return g, nil + return g.Life(), nil } } return g, nil