Skip to content

Commit b28d853

Browse files
committed
Fix extra typing
1 parent 38720e9 commit b28d853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/app/utils/executor-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ export class ExecutorsManager {
7878
? 'https://codesandbox.stream'
7979
: 'https://codesandbox.io';
8080

81-
await this.executor.initialize({
81+
await this.executor!.initialize({
8282
sandboxId: sandbox.id,
8383
files: getModulesToSend(sandbox),
8484
// this is in the type idk what is wrong
8585
// @ts-ignore
8686
host: sseHost,
8787
});
8888

89-
return this.executor;
89+
return this.executor!;
9090
}
9191

9292
async setupExecutor() {

0 commit comments

Comments
 (0)