fix TI appearing as key in prompt

This commit is contained in:
Mary Hipp 2024-02-26 12:29:28 -05:00 committed by Kent Keirsey
parent 253dc5d43d
commit 49b04f7db8

@ -31,7 +31,7 @@ export const EmbeddingSelect = memo(({ onSelect, onClose }: EmbeddingSelectProps
if (!embedding) {
return;
}
onSelect(embedding.key);
onSelect(embedding.name);
},
[onSelect]
);