Chats

No chats found.

.then(html => { document.getElementById('chatSection').innerHTML = html; // Refresh chat list after starting new chat fetch('/chat/refresh-list') .then(res => res.text()) .then(html => { document.getElementById('chatUserList').innerHTML = html; attachChatUserClickHandlers(); vendorSearchContainer.style.display = 'none'; }); }); }); vendorSearchResults.appendChild(item); }); }) .catch(error => { vendorSearchResults.innerHTML = '
Error searching vendors
'; console.error('Error:', error); }); }); } });