claude-cortex 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -246,7 +246,7 @@ export function MemoryDetail({
246
246
 
247
247
  return (
248
248
  <button
249
- key={related.id}
249
+ key={`${related.id}-${direction}`}
250
250
  onClick={() => onSelectMemory?.(related.id)}
251
251
  className="w-full text-left p-2 bg-slate-800 hover:bg-slate-750 rounded-lg transition-colors group"
252
252
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-cortex",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Brain-like memory system for Claude Code - solves context compaction and memory persistence",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",