mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
linting error
This commit is contained in:
parent
7191b0ac92
commit
c9d274fd84
1 changed files with 3 additions and 1 deletions
|
|
@ -56,7 +56,9 @@ export class DebugConsoleManager {
|
|||
*/
|
||||
getUnretrievedOutput(sessionId: string): string | undefined {
|
||||
const session = this.sessions.get(sessionId)
|
||||
if (!session) return undefined
|
||||
if (!session) {
|
||||
return undefined
|
||||
}
|
||||
|
||||
const newOutput = session.output.slice(session.lastRetrievedIndex + 1).join("")
|
||||
session.lastRetrievedIndex = session.output.length - 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue