diff --git a/src/NavBar.js b/src/NavBar.js index 42f93838a..66ff33c84 100644 --- a/src/NavBar.js +++ b/src/NavBar.js @@ -92,14 +92,14 @@ export default class extends React.Component { const childState = this.props.navigationState.children[this.props.navigationState.index]; if (childState.onRight && childState.rightTitle){ return ( - + {childState.rightTitle} ); } if (state.onRight && state.rightTitle){ return ( - + {state.rightTitle} ); @@ -111,14 +111,14 @@ export default class extends React.Component { const childState = this.props.navigationState.children[this.props.navigationState.index]; if (childState.onLeft && childState.leftTitle){ return ( - + {childState.leftTitle} ); } if (state.onLeft && state.leftTitle){ return ( - + {state.leftTitle} );