diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/common/SocialIcon.tsx | 4 | ||||
-rw-r--r-- | src/components/taggs/Tagg.tsx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/common/SocialIcon.tsx b/src/components/common/SocialIcon.tsx index 0cd5d2a7..8216b6ff 100644 --- a/src/components/common/SocialIcon.tsx +++ b/src/components/common/SocialIcon.tsx @@ -17,9 +17,9 @@ const SocialIcon: React.FC<SocialIconProps> = ({ }) => { switch (social) { case 'Instagram': - var icon = require('../../assets/socials/instagram-icon-white-bg.png'); + var icon = require('../../assets/socials/instagram-icon.png'); if (screenType === ScreenType.SuggestedPeople) { - icon = require('../../assets/socials/instagram-icon.png'); + icon = require('../../assets/socials/instagram-icon-white-bg.png'); } break; case 'Facebook': diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 29b55786..bb450b64 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -148,7 +148,7 @@ const Tagg: React.FC<TaggProps> = ({ <SocialIcon style={styles.icon} social={social} - screenType={ScreenType.Profile} + screenType={screenType} /> {pickTheRightRingHere()} </TouchableOpacity> |