aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorAshm Walia <ashmwalia@outlook.com>2021-01-27 09:00:16 -0800
committerAshm Walia <ashmwalia@outlook.com>2021-01-27 09:00:16 -0800
commit9298f8a31ca25f53d7fb6a0a90af783b9b01f46c (patch)
treeda3cb02e649fcd1280c9744bbf38941fd0801778 /src/components
parent2a93a92521d989664ebb8dfebe011d8df67ad40f (diff)
Removed redundancy
Diffstat (limited to 'src/components')
-rw-r--r--src/components/comments/CommentTile.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx
index 9a1607f7..39605f2c 100644
--- a/src/components/comments/CommentTile.tsx
+++ b/src/components/comments/CommentTile.tsx
@@ -4,7 +4,7 @@ import {ProfilePreview} from '../profile';
import {CommentType, ScreenType, TypeOfComment} from '../../types';
import {StyleSheet} from 'react-native';
import ClockIcon from '../../assets/icons/clock-icon-01.svg';
-import {COMMENT_REPLIES} from '../../constants';
+import {TAGG_LIGHT_BLUE} from '../../constants';
import {TouchableOpacity} from 'react-native-gesture-handler';
import {getTimePosted, normalize, SCREEN_WIDTH} from '../../utils';
import Arrow from '../../assets/icons/back-arrow-colored.svg';
@@ -89,7 +89,7 @@ const CommentTile: React.FC<CommentTileProps> = ({
<Arrow
width={12}
height={11}
- color={COMMENT_REPLIES}
+ color={TAGG_LIGHT_BLUE}
style={
!showReplies
? styles.repliesDownArrow
@@ -164,7 +164,7 @@ const styles = StyleSheet.create({
},
repliesText: {
- color: COMMENT_REPLIES,
+ color: TAGG_LIGHT_BLUE,
fontWeight: '500',
fontSize: normalize(12),
marginRight: '3%',