From 1ec3da6e3085d52aaaf0bdfd26aae954308d9f2d Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Fri, 10 Apr 2026 05:44:37 +0000 Subject: [PATCH] fix: add ES module export for SpatialMemory --- nexus/components/spatial-memory.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nexus/components/spatial-memory.js b/nexus/components/spatial-memory.js index ed7555c..f963de6 100644 --- a/nexus/components/spatial-memory.js +++ b/nexus/components/spatial-memory.js @@ -373,6 +373,4 @@ const SpatialMemory = (() => { }; })(); -if (typeof module !== 'undefined' && module.exports) { - module.exports = SpatialMemory; -} +export { SpatialMemory };