fix(curriculum,schema): allow A2 and B1 English to have block label (#65052)

This commit is contained in:
Huyen Nguyen
2026-01-09 20:50:58 +07:00
committed by GitHub
parent 78a1993095
commit 0a5551d302
8 changed files with 11 additions and 9 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import { fileURLToPath } from 'node:url';
import debug from 'debug';
import type { Chapter } from '../../shared-dist/config/chapters.js';
import type { BlockLabel } from '../../shared-dist/config/blocks.js';
import type {
SuperBlocks,
ChallengeLang
@@ -169,7 +170,7 @@ export interface BlockStructure {
disableLoopProtectTests?: boolean;
disableLoopProtectPreview?: boolean;
blockLayout: string;
blockLabel: string;
blockLabel?: BlockLabel;
challengeOrder: Challenge[];
dashedName: string;
isUpcomingChange?: boolean;