diff --git a/src/components/memory-panel.tsx b/src/components/memory-panel.tsx
index 9a46349..546e269 100644
--- a/src/components/memory-panel.tsx
+++ b/src/components/memory-panel.tsx
@@ -86,20 +86,6 @@ function formatRelativeTime(ts: number): string {
});
}
-/**
- * Format bead ID for display (shortened)
- */
-function formatBeadLink(beadId: string): string {
- if (!beadId) return "";
- // Show last segment: "project-id.3" -> "BD-..3" or keep short IDs as-is
- const parts = beadId.split("-");
- if (parts.length > 2) {
- const last = parts[parts.length - 1];
- return `BD-${last.toUpperCase()}`;
- }
- return beadId.toUpperCase();
-}
-
/**
* Single memory entry card
*/
@@ -118,7 +104,7 @@ function MemoryEntryCard({
}) {
return (
- {/* Top row: type badge, key, timestamp */}
+ {/* Top row: type badge, timestamp */}
{entry.type === "learned" ? (
@@ -130,9 +116,6 @@ function MemoryEntryCard({
INVES
)}
-
- {entry.key}
-