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 a310695 commit c068576Copy full SHA for c068576
src/toolbox/hardware_category.ts
@@ -26,7 +26,6 @@
26
27
import * as Blockly from 'blockly/core';
28
29
-import * as toolboxItems from './items';
30
import * as commonStorage from '../storage/common_storage';
31
import { getAllPossibleMechanisms } from './blocks_mechanisms';
32
import { getAllPossibleComponents, getBlocks } from './blocks_components';
@@ -50,7 +49,7 @@ export function getHardwareCategory(currentModule: commonStorage.Module) {
50
49
name: 'Hardware',
51
contents: [
52
getRobotMechanismsBlocks(currentModule),
53
- getRobotComponentsBlocks(currentModule),
+ getComponentsBlocks(currentModule),
54
]
55
};
56
}
0 commit comments