Browse Source

fix: incorrect command on main screen for exiting application (#201)

Josh 8 months ago
parent
commit
bb6b56b72a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/tui/internal/components/chat/messages.go

+ 1 - 1
packages/tui/internal/components/chat/messages.go

@@ -322,7 +322,7 @@ func (m *messagesComponent) home() string {
 		{"/new", "start a new session"},
 		{"/new", "start a new session"},
 		{"/model", "switch model"},
 		{"/model", "switch model"},
 		{"/theme", "switch theme"},
 		{"/theme", "switch theme"},
-		{"/quit", "exit the app"},
+		{"/exit", "exit the app"},
 	}
 	}
 
 
 	commandLines := []string{}
 	commandLines := []string{}