lint: fix unneeded lint comment

Andrey Nering created

Change summary

internal/tui/components/chat/editor.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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

@@ -90,7 +90,7 @@ func (m *editorCmp) openEditor() tea.Cmd {
 		return util.ReportError(err)
 	}
 	tmpfile.Close()
-	c := exec.Command(editor, tmpfile.Name()) //nolint:gosec
+	c := exec.Command(editor, tmpfile.Name())
 	c.Stdin = os.Stdin
 	c.Stdout = os.Stdout
 	c.Stderr = os.Stderr