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.
1 parent 38720e9 commit b28d853Copy full SHA for b28d853
packages/app/src/app/utils/executor-manager.ts
@@ -78,15 +78,15 @@ export class ExecutorsManager {
78
? 'https://codesandbox.stream'
79
: 'https://codesandbox.io';
80
81
- await this.executor.initialize({
+ await this.executor!.initialize({
82
sandboxId: sandbox.id,
83
files: getModulesToSend(sandbox),
84
// this is in the type idk what is wrong
85
// @ts-ignore
86
host: sseHost,
87
});
88
89
- return this.executor;
+ return this.executor!;
90
}
91
92
async setupExecutor() {
0 commit comments