From d06e2f87ffe857c0b046ef6e7cab1e9e66240f6b Mon Sep 17 00:00:00 2001 From: tauraamui Date: Thu, 16 Oct 2025 09:54:11 +0100 Subject: [PATCH] fix(fmt): correct indentation running gofmt directly --- internal/tui/components/chat/editor/editor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/components/chat/editor/editor.go b/internal/tui/components/chat/editor/editor.go index 34a3b9483e48742d2ecf515fba7a889b0a923694..169aad6d663b61228931fa5db562dddfbe2f93db 100644 --- a/internal/tui/components/chat/editor/editor.go +++ b/internal/tui/components/chat/editor/editor.go @@ -285,7 +285,7 @@ func (m *editorCmp) Update(msg tea.Msg) (tea.Model, tea.Cmd) { if !model.SupportsImages { return m, util.ReportWarn("File attachments are not supported by the current model: " + model.Name) } - return m, filepicker.OnPaste(filepicker.ResolveFS, string(msg)) // inject fsys accessibly from PWD + return m, filepicker.OnPaste(filepicker.ResolveFS, string(msg)) // inject fsys accessibly from PWD case commands.ToggleYoloModeMsg: m.setEditorPrompt()