From 3e812e8da78f6e6dae24febfa0d5dc70dfc31153 Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 10 Apr 2026 18:51:01 +0200 Subject: [PATCH] fix(guides): add stub GUIDES export so build passes Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/mana/apps/web/src/lib/modules/guides/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/mana/apps/web/src/lib/modules/guides/index.ts b/apps/mana/apps/web/src/lib/modules/guides/index.ts index 3bd04bdc0..8c2bebb45 100644 --- a/apps/mana/apps/web/src/lib/modules/guides/index.ts +++ b/apps/mana/apps/web/src/lib/modules/guides/index.ts @@ -21,3 +21,7 @@ export type { export { GUIDE_CATEGORIES, DIFFICULTY_LABELS } from './types'; export { guideTable, sectionTable, stepTable, runTable, GUIDES_GUEST_SEED } from './collections'; + +// TODO: GUIDES should be populated from a content source (static JSON, CMS, or DB). +// For now export an empty array so the /guides route renders without crashing the build. +export const GUIDES: Guide[] = [];