aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-07 14:46:38 -0400
committerIvan Chen <ivan@tagg.id>2021-07-09 15:55:18 -0400
commita33896aab969ee0c6678ab562ff2aeef25657c7c (patch)
tree51e3630e8d578aad8cd99c41311ddc1b9fbc94f4 /src/components
parent2697a10f65f84eb44757bc3b37c09bdc1989de5d (diff)
Remove old plus, Fix wrong upload click bug
Diffstat (limited to 'src/components')
-rw-r--r--src/components/common/NavigationIcon.tsx2
-rw-r--r--src/components/moments/Moment.tsx7
2 files changed, 1 insertions, 8 deletions
diff --git a/src/components/common/NavigationIcon.tsx b/src/components/common/NavigationIcon.tsx
index debb36b3..a5f42992 100644
--- a/src/components/common/NavigationIcon.tsx
+++ b/src/components/common/NavigationIcon.tsx
@@ -37,7 +37,7 @@ const NavigationIcon = (props: NavigationIconProps) => {
case 'Upload':
imgSrc = props.disabled
? require('../../assets/navigationIcons/new-upload.png')
- : require('../../assets/navigationIcons/upload-clicked.png');
+ : require('../../assets/navigationIcons/new-upload.png');
break;
case 'Notifications':
imgSrc = props.disabled
diff --git a/src/components/moments/Moment.tsx b/src/components/moments/Moment.tsx
index 87bfad77..b4703e70 100644
--- a/src/components/moments/Moment.tsx
+++ b/src/components/moments/Moment.tsx
@@ -80,13 +80,6 @@ const Moment: React.FC<MomentProps> = ({
)}
{!userXId && (
<View style={styles.row}>
- <PlusIcon
- width={23}
- height={23}
- onPress={navigateToCameraScreen}
- color={TAGG_LIGHT_BLUE}
- style={styles.horizontalMargin}
- />
{shouldAllowDeletion && (
<DeleteIcon
onPress={() => handleMomentCategoryDelete(title)}