File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ export function createEnvelopOrchestrator<PluginsContext extends DefaultContext>
307307 const afterCalls : SubscribeResultHook < PluginsContext > [ ] = [ ] ;
308308 const subscribeErrorHandlers : SubscribeErrorHook [ ] = [ ] ;
309309
310- let context = args . contextValue || { } ;
310+ let context = ( args . contextValue as { } ) || { } ;
311311
312312 for ( const onSubscribe of beforeCallbacks . subscribe ) {
313313 const after = await onSubscribe ( {
@@ -411,7 +411,7 @@ export function createEnvelopOrchestrator<PluginsContext extends DefaultContext>
411411 let result : AsyncIterableIteratorOrValue < ExecutionResult > ;
412412
413413 const afterCalls : OnExecuteDoneHook < PluginsContext > [ ] = [ ] ;
414- let context = args . contextValue || { } ;
414+ let context = ( args . contextValue as { } ) || { } ;
415415
416416 for ( const onExecute of beforeCallbacks . execute ) {
417417 let stopCalled = false ;
You can’t perform that action at this time.
0 commit comments