What went wrong?
Long strings in toast overflow toast body

What should've happened?
Overflow should be handled via css

Fix: Update below css and add both overflow properties
.toast-container > .toast > .toast-body {
background: white;
overflow: hidden;
text-overflow: ellipsis;
}