From 4481edb91592a88eeefa6317f918dbbf06a29508 Mon Sep 17 00:00:00 2001 From: Brian Seong Date: Thu, 23 Apr 2026 16:08:10 +0900 Subject: [PATCH] fix(sidebars): drop recipes/web/setup_guide until PR #186 merges MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sidebar enumeration landed in PR #254 references 'builder/tutorials/recipes/web/setup_guide', but that file only exists on 0xMiden/tutorials#186 (kbg/chore/v14-migration branch) — which has not merged into tutorials main yet. deploy-docs.yml ingests tutorials from its main branch for the live /next/ deploy, so every push-to-main build since PR #254 has crashed in loadVersion with: Invalid sidebar file at "sidebars.ts". These sidebar document ids do not exist: - builder/tutorials/recipes/web/setup_guide Remove the entry with a TODO to re-add after PR #186 merges. The setup_guide page will re-appear on the v0.14 release branch (which explicitly pins tutorials to the PR #186 ref). --- sidebars.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sidebars.ts b/sidebars.ts index 38994e82..01be4ee2 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -122,7 +122,10 @@ const sidebars: SidebarsConfig = { link: { type: "doc", id: "builder/tutorials/recipes/web/index" }, collapsed: true, items: [ - "builder/tutorials/recipes/web/setup_guide", + // NOTE: "builder/tutorials/recipes/web/setup_guide" lives + // only on 0xMiden/tutorials#186 (kbg/chore/v14-migration). + // Re-add once that PR merges into tutorials' main — + // it'll be part of the v0.14 release branch meanwhile. "builder/tutorials/recipes/web/counter_contract_tutorial", "builder/tutorials/recipes/web/create_deploy_tutorial", "builder/tutorials/recipes/web/mint_consume_create_tutorial",