Skip to content

Commit c788553

Browse files
committed
revert correctedTags check on android
1 parent 8e39bb5 commit c788553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ void LayoutAnimationsProxy::addOngoingAnimations(
432432
for (auto &[tag, updateValues] : updateMap) {
433433
#ifdef ANDROID
434434
i++;
435-
if (correctedTags && correctedTags[i] == -1) {
435+
if (correctedTags[i] == -1) {
436436
// skip views that have not been mounted yet
437437
// on Android we start entering animations from the JS thread
438438
// so it might happen, that the first frame of the animation goes through

0 commit comments

Comments
 (0)