This commit is contained in:
Oliver
2025-07-24 20:05:23 -03:00
parent 70d627f17b
commit 92575c040f
3 changed files with 20 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ If its not the right fit, no worries — well refund you 💸.
function appendMessage(text, sender) {
const msg = document.createElement('div');
msg.classList.add('mywidget-message', sender === 'user' ? 'user' : 'bot');
msg.classList.add('cw-message', sender === 'user' ? 'user' : 'bot');
msg.innerHTML = text;
chatMessages.appendChild(msg);