Skip to content

Commit

Permalink
Merge pull request #2001 from Expensify/tgolen-fix-report-title
Browse files Browse the repository at this point in the history
Fix width of report header on mobile web
  • Loading branch information
Luke9389 authored Mar 23, 2021
2 parents c2c6bc6 + 6258b99 commit f6cb6ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/HeaderView.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const propTypes = {
}),

// Personal details of all the users
personalDetails: PropTypes.arrayOf(participantPropTypes).isRequired,
personalDetails: PropTypes.objectOf(participantPropTypes).isRequired,

...windowDimensionsPropTypes,
};
Expand Down Expand Up @@ -83,7 +83,7 @@ const HeaderView = (props) => {
Navigation.navigate(ROUTES.getProfileRoute(participants[0]));
}
}}
style={[styles.flexRow, styles.alignItemsCenter]}
style={[styles.flexRow, styles.alignItemsCenter, styles.flex1]}
>
<MultipleAvatars avatarImageURLs={props.report.icons} />
<View style={[styles.flex1, styles.flexRow]}>
Expand Down

0 comments on commit f6cb6ce

Please sign in to comment.