fix(cli): rename "Add more" to "Add additional" in primary sources menu

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Luca Martial 2026-05-13 14:22:36 -07:00
parent 5f9c35558a
commit 89e9782429
2 changed files with 7 additions and 7 deletions

View file

@ -566,7 +566,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
expect(testConnection).not.toHaveBeenCalled();
@ -619,7 +619,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
expect(testConnection).toHaveBeenCalledTimes(1);
@ -658,7 +658,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
const config = parseKtxProjectConfig(await readFile(join(tempDir, 'ktx.yaml'), 'utf-8'));
@ -697,7 +697,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
});
@ -742,7 +742,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
});
@ -789,7 +789,7 @@ describe('setup databases step', () => {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
});
expect(testConnection).not.toHaveBeenCalled();

View file

@ -486,7 +486,7 @@ function configuredPrimarySourcesPrompt(connectionIds: string[]): {
options: [
{ value: 'continue', label: 'Continue to knowledge sources' },
{ value: 'edit', label: 'Edit an existing primary source' },
{ value: 'add', label: 'Add more primary sources' },
{ value: 'add', label: 'Add additional primary sources' },
],
};
}