diff --git a/src/components/OptionsList.js b/src/components/OptionsList.js index fbe8745b7c56..715edea1c35c 100644 --- a/src/components/OptionsList.js +++ b/src/components/OptionsList.js @@ -222,9 +222,7 @@ class OptionsList extends Component { render() { return ( - + {this.props.headerMessage ? ( diff --git a/src/pages/iou/IOUModal.js b/src/pages/iou/IOUModal.js index 15406748cd84..f9cc56ecd42e 100755 --- a/src/pages/iou/IOUModal.js +++ b/src/pages/iou/IOUModal.js @@ -171,7 +171,11 @@ class IOUModal extends Component { if (this.state.previousStepIndex > this.state.currentStepIndex) { return 'out'; } - return null; + + // Doesn't animate the step when first opening the modal + if (this.state.previousStepIndex === this.state.currentStepIndex) { + return null; + } } /**