diff --git a/components/cycle-day/symptoms/action-button-footer.js b/components/cycle-day/symptoms/action-button-footer.js index 35360ba3badcc9d45095f3d11f3b3323db2e334c..c70fca34052ed0fadd2ba86bf568d7c4207020cb 100644 --- a/components/cycle-day/symptoms/action-button-footer.js +++ b/components/cycle-day/symptoms/action-button-footer.js @@ -48,7 +48,12 @@ export default class ActionButtonFooter extends Component { const textStyle = [styles.menuText] if (disabledCondition) textStyle.push(styles.menuTextInActive) const iconStyle = disabledCondition ? - Object.assign({}, iconStyles.menuIcon, iconStyles.menuIconInactive) : + Object.assign( + {}, + iconStyles.menuIcon, + iconStyles.menuIconInactive + ) + : iconStyles.menuIcon return ( diff --git a/components/header.js b/components/header.js index b99ed15fb60049c14fa1c5ec3508bda9196cd5f8..e147ccae72f9f5e9c97a609968b5d050b4dddb99 100644 --- a/components/header.js +++ b/components/header.js @@ -14,7 +14,10 @@ export default class Header extends Component { return ( this.props.isCycleDayOverView ? <View style={[styles.header, styles.headerCycleDay]}> - <View style={styles.accentCircle} left={middle - styles.accentCircle.width / 2}/> + <View + style={styles.accentCircle} + left={middle - styles.accentCircle.width / 2} + /> <Icon name='arrow-left-drop-circle' {...iconStyles.navigationArrow}