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 @@ -65,12 +65,12 @@ const getChain = async (action: Action): Promise<((req: any, action: Action) =>
65
65
for ( const pluginObj of chainPluginLoader . pushPlugins ) {
66
66
console . log ( `Inserting push plugin ${ pluginObj . constructor . name } into chain` ) ;
67
67
// insert custom functions after parsePush but before other actions
68
- pushActionChain . splice ( 1 , 0 , pluginObj . exec as any ) ;
68
+ pushActionChain . splice ( 1 , 0 , pluginObj . exec ) ;
69
69
}
70
70
for ( const pluginObj of chainPluginLoader . pullPlugins ) {
71
71
console . log ( `Inserting pull plugin ${ pluginObj . constructor . name } into chain` ) ;
72
72
// insert custom functions before other pull actions
73
- pullActionChain . splice ( 0 , 0 , pluginObj . exec as any ) ;
73
+ pullActionChain . splice ( 0 , 0 , pluginObj . exec ) ;
74
74
}
75
75
// This is set to true so that we don't re-insert the plugins into the chain
76
76
pluginsInserted = true ;
You can’t perform that action at this time.
0 commit comments