Skip to content

Commit e257ccc

Browse files
committed
Fix test issues
1 parent 9262e60 commit e257ccc

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/app-utils/src/plugins/PluginUtils.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import {
1313
type PluginModule,
1414
isPlugin,
1515
isMultiPlugin,
16-
type MultiPlugin,
1716
} from '@deephaven/plugin';
1817
import loadRemoteModule from './loadRemoteModule';
1918

@@ -143,9 +142,9 @@ export async function loadModulePlugins(
143142
log.debug(
144143
`MultiPlugin '${name}' contains ${moduleValue.plugins.length} plugins`
145144
);
146-
for (const innerPlugin of moduleValue.plugins) {
145+
moduleValue.plugins.forEach(innerPlugin => {
147146
registerPlugin(pluginMap, innerPlugin.name, innerPlugin, version);
148-
}
147+
});
149148
} else {
150149
registerPlugin(pluginMap, name, moduleValue, version);
151150
}

0 commit comments

Comments
 (0)