diff --git a/Libraries/Utilities/buildStyleInterpolator.js b/Libraries/Utilities/buildStyleInterpolator.js index c31640987..1e17dc1b8 100644 --- a/Libraries/Utilities/buildStyleInterpolator.js +++ b/Libraries/Utilities/buildStyleInterpolator.js @@ -54,6 +54,9 @@ const computeNextValLinear = function(anim, from, to, value) { if (hasRoundRatio) { nextVal = Math.round(roundRatio * nextVal) / roundRatio; } + if (!isFinite(nextVal)) { + nextVal = null; + } return nextVal; };