From d860a8d4ce5c39d4da54b9d789b77f6b9041ffc2 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Mon, 22 Oct 2018 12:05:42 -0700 Subject: [PATCH] Revert attempted fix for nested state change freeze --- src/views/Transitioner.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/views/Transitioner.js b/src/views/Transitioner.js index 86b2519..3371f5d 100644 --- a/src/views/Transitioner.js +++ b/src/views/Transitioner.js @@ -87,15 +87,6 @@ class Transitioner extends React.Component { return; } - if ( - isRouteShallowEqual( - this.props.navigation.state, - nextProps.navigation.state - ) - ) { - return; - } - const indexHasChanged = nextProps.navigation.state.index !== this.props.navigation.state.index; if (this._isTransitionRunning) {