From 316af4233f8013fd21d95375ebc29e96639c7774 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 16 Feb 2026 18:58:17 -0600 Subject: [PATCH] refactor(stats): added sheet version check in --- app/src/internal/system/routes/stats.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/internal/system/routes/stats.ts b/app/src/internal/system/routes/stats.ts index 05c6425..c200ae1 100644 --- a/app/src/internal/system/routes/stats.ts +++ b/app/src/internal/system/routes/stats.ts @@ -58,6 +58,7 @@ router.get("/", async (req, res) => { memoryUsage: `Heap: ${(used.heapUsed / 1024 / 1024).toFixed(2)} MB / RSS: ${( used.rss / 1024 / 1024 ).toFixed(2)} MB`, + eomFGPkgSheetVersion: 1, // this is the excel file version when we have a change to the macro we want to grab this }); });