From 5b16a0a42e50b7f2fcae7bdba3076845f9b1df69 Mon Sep 17 00:00:00 2001 From: Ramnique Singh <30795890+ramnique@users.noreply.github.com> Date: Mon, 13 Apr 2026 23:58:47 +0530 Subject: [PATCH] fix track regex matching --- apps/x/packages/core/src/knowledge/track/fileops.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/x/packages/core/src/knowledge/track/fileops.ts b/apps/x/packages/core/src/knowledge/track/fileops.ts index ab530fa8..227046c0 100644 --- a/apps/x/packages/core/src/knowledge/track/fileops.ts +++ b/apps/x/packages/core/src/knowledge/track/fileops.ts @@ -23,8 +23,8 @@ export async function fetchAll(filePath: string): Promise[] = []; let i = 0; - const contentFenceStartMatcher = //; - const contentFenceEndMatcher = //; + const contentFenceStartMatcher = //; + const contentFenceEndMatcher = //; while (i < lines.length) { if (lines[i].trim() === '```track') { const fenceStart = i;