()
| 7254 | |
| 7255 | const messagesToDelete = messages.slice(messageIndex + 1); |
| 7256 | for (const msg of messagesToDelete) { |
| 7257 | await chatDB.deleteMessage(msg.id); |
| 7258 | } |
| 7259 | const remainingMessages = messages.slice(0, messageIndex + 1); |
| 7260 | await this.recomputeSessionCouncilTranscriptHint?.(session, remainingMessages); |
| 7261 | if (this.chatArea && this.isViewingSession(session.id)) { |
no outgoing calls
no test coverage detected