diff --git a/Libraries/Animated/nodes/AnimatedValue.js b/Libraries/Animated/nodes/AnimatedValue.js index 0c3dcbf86e7c40..207dbf69c6e12b 100644 --- a/Libraries/Animated/nodes/AnimatedValue.js +++ b/Libraries/Animated/nodes/AnimatedValue.js @@ -49,7 +49,7 @@ const NativeAnimatedAPI = NativeAnimatedHelper.API; * transform which can receive values from multiple parents. */ export function flushValue(rootNode: AnimatedNode): void { - const leaves = new Set<{update:() => void, ...}>(); + const leaves = new Set<{update: () => void, ...}>(); function findAnimatedStyles(node: AnimatedNode) { // $FlowFixMe[prop-missing] if (typeof node.update === 'function') {