diff --git a/src/CONST.js b/src/CONST.js index 8cd279eedbed..a65cadee6b8b 100755 --- a/src/CONST.js +++ b/src/CONST.js @@ -733,6 +733,7 @@ const CONST = { SMALLER: 'smaller', SUBSCRIPT: 'subscript', SMALL_SUBSCRIPT: 'small-subscript', + LARGE_BORDERED: 'large-bordered', }, OPTION_MODE: { COMPACT: 'compact', diff --git a/src/components/RoomHeaderAvatars.js b/src/components/RoomHeaderAvatars.js index d11619b97a69..5a69b3ddcabc 100644 --- a/src/components/RoomHeaderAvatars.js +++ b/src/components/RoomHeaderAvatars.js @@ -61,7 +61,6 @@ const RoomHeaderAvatars = (props) => { } const iconsToDisplay = props.icons.slice(0, CONST.REPORT.MAX_PREVIEW_AVATARS); - console.log('this is large bordered', StyleUtils.getAvatarStyle(CONST.AVATAR_SIZE.LARGE_BORDERED)); const iconStyle = [ styles.roomHeaderAvatar, diff --git a/src/styles/StyleUtils.js b/src/styles/StyleUtils.js index 4d8d1ba2a810..a4a763fbfd6a 100644 --- a/src/styles/StyleUtils.js +++ b/src/styles/StyleUtils.js @@ -25,9 +25,6 @@ function getAvatarSize(size) { [CONST.AVATAR_SIZE.LARGE_BORDERED]: variables.avatarSizeLargeBordered, }; - if (!size) { - console.log('nothing was sent to size either', size, AVATAR_SIZES[size]); - } return AVATAR_SIZES[size]; } @@ -38,10 +35,6 @@ function getAvatarSize(size) { * @returns {Object} */ function getAvatarStyle(size) { - if (!size) { - console.log('yourenot sending anything to style'); - } - const avatarSize = getAvatarSize(size); return { height: avatarSize,