diff --git a/cmd/tea_terraform.go b/cmd/tea_terraform.go index 38c4d03f..b64f86fb 100644 --- a/cmd/tea_terraform.go +++ b/cmd/tea_terraform.go @@ -105,7 +105,7 @@ func (m *cmdModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { lastMsgType := fmt.Sprintf("%T", msg) if lastMsgType != "spinner.TickMsg" { log.Debugf("cmdModel: Update %v received %#v", lastMsgType, msg) - if cmdSpan != nil && !slices.Contains([]string{"tea.KeyMsg", "tea.Quit"}, lastMsgType) { + if cmdSpan != nil && !slices.Contains([]string{"tea.KeyMsg", "tea.Quit", "cmd.delayQuitMsg"}, lastMsgType) { cmdSpan.SetAttributes(attribute.String("ovm.cli.lastMsgType", lastMsgType)) } }