Skip to content

Commit

Permalink
Fix width of report header on mobile web
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolen committed Mar 22, 2021
1 parent 0ba4b26 commit 6258b99
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 6258b99

Please sign in to comment.