Can't scroll to see all chats in projects

Guys, I immediately realize it was some front end issue, so I asked GPT to generate several solutions and this one did the trick for me, its just a temporary solution until they fix, you’ll just have to paste it in browser console:

document.querySelectorAll(‘*’).forEach(el => {
if (el.scrollHeight > el.clientHeight) {
el.style.maxHeight = ‘none’;
el.style.overflowY = ‘auto’;
}
});

The container was clipped due to a bad max-height or overflow setting, so overriding it manually let it expand and show your chats.

1 Like