Skip to content

Commit c2a679f

Browse files
committed
Change AI username text
1 parent 3e8ac1a commit c2a679f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/chat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function addMessage(text, type) {
8787
messageDiv.innerHTML = `<strong>You:</strong> ${escapeHtml(text)}`;
8888
} else if (type === 'ai') {
8989
messageDiv.className += ' text-gray-700 dark:text-gray-300';
90-
messageDiv.innerHTML = `<strong>AI:</strong> ${escapeHtml(text)}`;
90+
messageDiv.innerHTML = `<strong>Assistant:</strong> ${escapeHtml(text)}`;
9191
} else if (type === 'loading') {
9292
messageDiv.className += ' text-gray-500 dark:text-gray-500 italic';
9393
messageDiv.textContent = text;

0 commit comments

Comments
 (0)