diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-07 14:46:38 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-07-09 15:55:18 -0400 |
commit | a33896aab969ee0c6678ab562ff2aeef25657c7c (patch) | |
tree | 51e3630e8d578aad8cd99c41311ddc1b9fbc94f4 /src/components/common | |
parent | 2697a10f65f84eb44757bc3b37c09bdc1989de5d (diff) |
Remove old plus, Fix wrong upload click bug
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/NavigationIcon.tsx | 2 |
1 files changed, 1 insertions, 1 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 |