Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
parasharrajat committed Feb 12, 2021
1 parent 3e371b6 commit 334de8d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/pages/home/sidebar/OptionRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ const OptionRow = ({
]}
>
{
!_.isEmpty(option.icons)
&& (
<MultipleAvatars
avatarImageURLs={option.icons}
optionIsFocused={optionIsFocused}
/>
)
}
!_.isEmpty(option.icons)
&& (
<MultipleAvatars
avatarImageURLs={option.icons}
optionIsFocused={optionIsFocused}
/>
)
}
<View style={[styles.flex1]}>
<Text style={[styles.optionDisplayName, textUnreadStyle]} numberOfLines={1}>
{option.text}
Expand All @@ -119,7 +119,7 @@ const OptionRow = ({
{showSelectedState && (
<View style={[styles.selectCircle]}>
{isSelected && (
<Icon src={Checkmark} fill={themeColors.iconSuccessFill} />
<Icon src={Checkmark} fill={themeColors.iconSuccessFill} />
)}
</View>
)}
Expand All @@ -128,14 +128,14 @@ const OptionRow = ({
{!hideAdditionalOptionStates && (
<View style={styles.flexRow}>
{option.hasDraftComment && (
<View style={styles.ml2}>
<Icon src={Pencil} />
</View>
<View style={styles.ml2}>
<Icon src={Pencil} />
</View>
)}
{option.isPinned && (
<View style={styles.ml2}>
<Icon src={PinCircle} />
</View>
<View style={styles.ml2}>
<Icon src={PinCircle} />
</View>
)}
</View>
)}
Expand Down

0 comments on commit 334de8d

Please sign in to comment.