Skip to content

Commit

Permalink
Remove unnecessary string literal
Browse files Browse the repository at this point in the history
Suggested by fedirjh. Thanks for catching that.

Co-authored-by: Fedi Rajhi <[email protected]>
  • Loading branch information
Victor-Nyagudi and fedirjh authored May 14, 2023
1 parent 3eb811c commit 3f3e338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UnreadActionIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const UnreadActionIndicator = (props) => (
accessibilityLabel={props.translate('accessibilityHints.newMessageLineIndicator')}
data-action-id={props.reportActionID}
style={[styles.unreadIndicatorContainer, styles.userSelectNone]}
nativeID={`${CONST.UNREAD_ACTION_INDICATOR_ID}`}
nativeID={CONST.UNREAD_ACTION_INDICATOR_ID}
>
<View style={styles.unreadIndicatorLine} />
<Text style={styles.unreadIndicatorText}>{props.translate('common.new')}</Text>
Expand Down

0 comments on commit 3f3e338

Please sign in to comment.