Skip to content

Commit 0858736

Browse files
committed
remove double brackets
1 parent 01565c9 commit 0858736

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/MenuItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const MenuItem = props => (
133133
</View>
134134
)}
135135
{props.brickRoadIndicator && (
136-
<View style={[[styles.alignItemsCenter, styles.justifyContentCenter]]}>
136+
<View style={[styles.alignItemsCenter, styles.justifyContentCenter]}>
137137
<Icon
138138
src={Expensicons.DotIndicator}
139139
fill={props.brickRoadIndicator === 'error' ? colors.red : colors.green}

src/components/OptionRow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const OptionRow = (props) => {
207207
</View>
208208
) : null}
209209
{props.option.brickRoadIndicator === CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR && (
210-
<View style={[[styles.alignItemsCenter, styles.justifyContentCenter]]}>
210+
<View style={[styles.alignItemsCenter, styles.justifyContentCenter]}>
211211
<Icon
212212
src={Expensicons.DotIndicator}
213213
fill={colors.red}

0 commit comments

Comments
 (0)