Merge remote-tracking branch 'origin/main' into onboarding

Kujtim Hoxha created

Change summary

.goreleaser.yml                               | 4 ++--
internal/tui/components/chat/editor/editor.go | 1 -
2 files changed, 2 insertions(+), 3 deletions(-)

Detailed changes

.goreleaser.yml 🔗

@@ -36,8 +36,8 @@ before:
     - sh -c 'go run . completion fish >./completions/crush.fish'
     - sh -c 'go run . man | gzip -c >./manpages/crush.1.gz'
 
-gomod:
-  proxy: true
+# gomod:
+#   proxy: true
 
 builds:
   - env:

internal/tui/components/chat/editor/editor.go 🔗

@@ -255,7 +255,6 @@ func (m *editorCmp) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
 		}
 		if key.Matches(msg, m.keyMap.Newline) {
 			m.textarea.InsertRune('\n')
-			return m, nil
 		}
 		// Handle Enter key
 		if m.textarea.Focused() && key.Matches(msg, m.keyMap.SendMessage) {