Skip to content

Commit c9d274f

Browse files
linting error
1 parent 7191b0a commit c9d274f

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)