diff --git a/internal/tui/page/chat/chat.go b/internal/tui/page/chat/chat.go index a03ca4953f28ed1fbd8ade0902baf68a0a5056f8..c82f4ebecf6839183c432ec876576577e102ef88 100644 --- a/internal/tui/page/chat/chat.go +++ b/internal/tui/page/chat/chat.go @@ -177,6 +177,9 @@ func (p *chatPage) Update(msg tea.Msg) (tea.Model, tea.Cmd) { } return p, nil case tea.MouseClickMsg: + if p.isOnboarding { + return p, nil + } if p.compact { msg.Y -= 1 } @@ -203,6 +206,9 @@ func (p *chatPage) Update(msg tea.Msg) (tea.Model, tea.Cmd) { } return p, nil case tea.MouseReleaseMsg: + if p.isOnboarding { + return p, nil + } if p.compact { msg.Y -= 1 }