A simple workaround that I use is to style the cursor in the Custom CSS:
.typed-cursor {
-webkit-animation: blink 1s infinite !important;
animation: blink 1s infinite !important;
}
@keyframes blink {
from {
opacity: 0;
}
to {
opacity: 1
}
}
@-webkit-keyframes blink {
from {
opacity: 0;
}
to {
opacity: 1
}
}