We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 482d024 commit 5a015bfCopy full SHA for 5a015bf
1 file changed
src/cli/commands/import/import-memory.ts
@@ -117,7 +117,7 @@ export async function handleImportMemory(options: ImportResourceOptions): Promis
117
memoryId = memories[0]!.memoryId;
118
onProgress(`Found 1 memory: ${memoryId}. Auto-selecting.`);
119
} else {
120
- console.log(`\nFound ${memories.length} memory(ies):\n`);
+ console.log(`\nFound ${memories.length} ${memories.length === 1 ? 'memory' : 'memories'}:\n`);
121
for (let i = 0; i < memories.length; i++) {
122
const m = memories[i]!;
123
console.log(` ${dim}[${i + 1}]${reset} ${m.memoryId} — ${m.status}`);
0 commit comments