fix: overlay border color issues

This commit is contained in:
adamdottv
2025-06-23 11:21:49 -05:00
parent 61f057337a
commit 966015c9ae
2 changed files with 35 additions and 24 deletions

View File

@@ -487,11 +487,6 @@ func (a appModel) executeCommand(command commands.Command) (tea.Model, tea.Cmd)
a.editor = updated.(chat.EditorComponent)
cmds = append(cmds, cmd)
case commands.InputNewlineCommand:
cmds = append(cmds, toast.NewInfoToast("Press enter to submit"))
cmds = append(cmds, toast.NewWarningToast("Press shift+enter to submit and create a new line"))
cmds = append(cmds, toast.NewErrorToast("Press shift+enter to submit and create a new line"))
cmds = append(cmds, toast.NewSuccessToast("Press shift+enter to submit and create a new line"))
updated, cmd := a.editor.Newline()
a.editor = updated.(chat.EditorComponent)
cmds = append(cmds, cmd)