Seems like you need to implement the fix outlined here: airbnb/lottie-web#1772
Updating the componentWillUnmount function in the distro package temporarily fixed it for me
Lottie.prototype.componentWillUnmount = function () {
this.removeEventListeners(this.props.lottieEventListeners);
this.animationItem.wrapper=this.animationItem.wrapper || {} // <<Add this line
this.animationItem.destroy(this.animationItem.wrapper); // << Update this line
this.config.animationData = null;
this.config.path = null;
this.animationItem = null;
};