Skip to content

Commit

Permalink
Why
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Oct 4, 2023
1 parent 49cd217 commit 4345dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/common/application/applicationShell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class ApplicationShell implements IApplicationShell {
}
public get onDidWriteTerminalData(): Event<TerminalDataWriteEvent> {
try {
return window.onDidWriteTerminalData;
return (window as any).onDidWriteTerminalData;
} catch (ex) {
traceError('Failed to get onDidWriteTerminalData', ex);
console.log('Failed to get onDidWriteTerminalData', ex);
Expand Down

0 comments on commit 4345dad

Please sign in to comment.