The method scrollToBottom with React doesn’t work at all… Only ScrollToTop works with Ionic React…
Quick and dirty fix:
function getContent() {
return document.querySelector('ion-content#chat-content');
}
function scrollToBottom() {
const container = getContent();
if(container) container.scrollToPoint(0, 99999);
}