Skip to content

Commit

Permalink
fix: large screen max icons
Browse files Browse the repository at this point in the history
  • Loading branch information
WikusKriek committed Jul 3, 2023
1 parent d0acf18 commit f4c5049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionItemCreated.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function ReportActionItemCreated(props) {
size={props.isLargeScreenWidth || (icons && icons.length < 3) ? CONST.AVATAR_SIZE.LARGE : CONST.AVATAR_SIZE.MEDIUM}
shouldStackHorizontally
shouldDisplayAvatarsInRows={props.isSmallScreenWidth}
maxAvatarsInRow={props.isSmallScreenWidth ? CONST.AVATAR_ROW_SIZE.DEFAULT : CONST.AVATAR_ROW_SIZE.EIGHT}
maxAvatarsInRow={props.isSmallScreenWidth ? CONST.AVATAR_ROW_SIZE.DEFAULT : CONST.AVATAR_ROW_SIZE.LARGE_SCREEN}
/>
</PressableWithoutFeedback>
<View style={[styles.ph5]}>
Expand Down

0 comments on commit f4c5049

Please sign in to comment.