Skip to content

Commit

Permalink
fix(activation): regression in deactivate
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 27, 2017
1 parent ccb4479 commit 8ef8840
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/activation.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ function findDeactivatable(plan, callbackName, list: Array<Object> = []): Array<

if (viewPortPlan.childNavigationInstruction) {
findDeactivatable(viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down

1 comment on commit 8ef8840

@davismj
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any chance we know what the regression was?

Please sign in to comment.