Skip to content

Commit

Permalink
bugfix: wizard back (#1246)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanmino authored Dec 13, 2019
1 parent fd470af commit 850a725
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/components/UI/OnboardingWizard/Step4/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ class Step4 extends PureComponent {
ref &&
ref.current &&
ref.current.measure((fx, fy, width, height, px, py) => {
this.setState({
viewTop: py - 50
});
py &&
this.setState({
viewTop: py - 50
});
});
};

Expand Down

0 comments on commit 850a725

Please sign in to comment.