From 06c4ae81e4112fdf117e2bf03e765b55bf1c425e Mon Sep 17 00:00:00 2001 From: Niraj Nandish Date: Thu, 13 Jul 2023 01:10:41 +0400 Subject: [PATCH] fix: superblock order for mobile (#50957) --- tools/scripts/build/build-external-curricula-data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/scripts/build/build-external-curricula-data.ts b/tools/scripts/build/build-external-curricula-data.ts index 4d8e939c026..b2d63ffc823 100644 --- a/tools/scripts/build/build-external-curricula-data.ts +++ b/tools/scripts/build/build-external-curricula-data.ts @@ -38,6 +38,7 @@ export const orderedSuperBlockInfo = [ { dashedName: SuperBlocks.SciCompPy, public: true }, { dashedName: SuperBlocks.DataAnalysisPy, public: true }, { dashedName: SuperBlocks.MachineLearningPy, public: true }, + { dashedName: SuperBlocks.RespWebDesign, public: true }, { dashedName: SuperBlocks.JsAlgoDataStruct, public: false }, { dashedName: SuperBlocks.FrontEndDevLibs, public: false }, { dashedName: SuperBlocks.DataVis, public: false }, @@ -46,8 +47,7 @@ export const orderedSuperBlockInfo = [ { dashedName: SuperBlocks.InfoSec, public: false }, { dashedName: SuperBlocks.CodingInterviewPrep, public: false }, { dashedName: SuperBlocks.ProjectEuler, public: false }, - { dashedName: SuperBlocks.RelationalDb, public: false }, - { dashedName: SuperBlocks.RespWebDesign, public: true } + { dashedName: SuperBlocks.RelationalDb, public: false } ]; const dashedNames = orderedSuperBlockInfo.map(({ dashedName }) => dashedName);