Skip to content

Commit f915fb2

Browse files
authored
Merge pull request RooCodeInc#1421 from evan-fannin/fix-linting-error
Chore: Fix linting error
2 parents 2dceadb + c9d274f commit f915fb2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/integrations/debug/DebugConsoleManager.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ export class DebugConsoleManager {
5656
*/
5757
getUnretrievedOutput(sessionId: string): string | undefined {
5858
const session = this.sessions.get(sessionId)
59-
if (!session) return undefined
59+
if (!session) {
60+
return undefined
61+
}
6062

6163
const newOutput = session.output.slice(session.lastRetrievedIndex + 1).join("")
6264
session.lastRetrievedIndex = session.output.length - 1

0 commit comments

Comments
 (0)