From 396100686c4c72bf9eae4fe0ae785b2bd2fedbd0 Mon Sep 17 00:00:00 2001 From: trueheads Date: Thu, 18 Dec 2025 20:25:45 -0600 Subject: [PATCH] feat: When clicking on the spec editor tab, get this network er... --- apps/server/src/routes/fs/routes/read.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/routes/fs/routes/read.ts b/apps/server/src/routes/fs/routes/read.ts index 734a4c5c..a1833d5c 100644 --- a/apps/server/src/routes/fs/routes/read.ts +++ b/apps/server/src/routes/fs/routes/read.ts @@ -9,7 +9,7 @@ import { getErrorMessage, logError } from "../common.js"; // Optional files that are expected to not exist in new projects // Don't log ENOENT errors for these to reduce noise -const OPTIONAL_FILES = ["categories.json"]; +const OPTIONAL_FILES = ["categories.json", "app_spec.txt"]; function isOptionalFile(filePath: string): boolean { return OPTIONAL_FILES.some((optionalFile) => filePath.endsWith(optionalFile));