From a8cd0e52804883372c8398e2a9f043bc52cbb3d5 Mon Sep 17 00:00:00 2001 From: Liz Looney Date: Thu, 23 Oct 2025 16:06:01 -0700 Subject: [PATCH] Remove the mrc_port block from the Test category (#282) * Fixed the mrc_port block in test_category.ts. * Removed the mrc_port block from test_category.ts. --- src/toolbox/test_category.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/toolbox/test_category.ts b/src/toolbox/test_category.ts index 04bc1701..f46179a3 100644 --- a/src/toolbox/test_category.ts +++ b/src/toolbox/test_category.ts @@ -20,17 +20,6 @@ export function getCategory(): toolboxItems.Category { addBuiltInFunctionBlocks([printFunction], contents); - contents.push({ - kind: 'block', - type: 'mrc_port', - extraState: { - ports: [ - { portType: 'USB Port', portNumber: 1 }, - { portType: 'Expansion Hub Motor Port', portNumber: 2 }, - ], - }, - }); - return { kind: 'category', name: Blockly.Msg['MRC_CATEGORY_TEST'],