From 133f440d9ad0bf74ce8440a11455bbd5c4ee5399 Mon Sep 17 00:00:00 2001 From: fabriziobertoglio1987 Date: Tue, 13 Dec 2022 13:39:28 +0100 Subject: [PATCH] remove change to AnimatedValue --- Libraries/Animated/nodes/AnimatedValue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') {