We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2dceadb + c9d274f commit f915fb2Copy full SHA for f915fb2
src/integrations/debug/DebugConsoleManager.ts
@@ -56,7 +56,9 @@ export class DebugConsoleManager {
56
*/
57
getUnretrievedOutput(sessionId: string): string | undefined {
58
const session = this.sessions.get(sessionId)
59
- if (!session) return undefined
+ if (!session) {
60
+ return undefined
61
+ }
62
63
const newOutput = session.output.slice(session.lastRetrievedIndex + 1).join("")
64
session.lastRetrievedIndex = session.output.length - 1
0 commit comments