Browse Source

chore: cleanup

adamdottv 9 months ago
parent
commit
b6524c0982
1 changed files with 1 additions and 5 deletions
  1. 1 5
      internal/tui/components/logs/table.go

+ 1 - 5
internal/tui/components/logs/table.go

@@ -29,7 +29,6 @@ type tableCmp struct {
 
 type selectedLogMsg logging.Log
 
-// Message for when logs are loaded from the database
 type logsLoadedMsg struct {
 	logs []logging.Log
 }
@@ -48,7 +47,7 @@ func (i *tableCmp) fetchLogs() tea.Cmd {
 
 		var logs []logging.Log
 		var err error
-		sessionId := "" //session.CurrentSessionID()
+		sessionId := "" // TODO: session.CurrentSessionID()
 
 		// Limit the number of logs to improve performance
 		const logLimit = 100
@@ -160,9 +159,6 @@ func (i *tableCmp) BindingKeys() []key.Binding {
 func (i *tableCmp) updateRows() {
 	rows := make([]table.Row, 0, len(i.logs))
 
-	// Logs are already sorted by timestamp (newest first) from the database query
-	// Skip the expensive sort operation
-
 	for _, log := range i.logs {
 		// Format timestamp as time
 		timeStr := time.UnixMilli(log.Timestamp).Format("15:04:05")