diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-11 16:53:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 16:53:24 -0500 |
commit | 2561d20e17a697726d6b77accf79c9da2d1f6ef6 (patch) | |
tree | 9e2fdacee1040a9e9f975a329846dfa60cf5f3a4 /src/components/onboarding/SocialMediaLinker.tsx | |
parent | 3bc52c4e021199c5b546d51cd238aad9a96852a7 (diff) | |
parent | 97e73f47622df32859964df4c94a4d419590bee2 (diff) |
Merge pull request #237 from shravyaramesh/tma255-taggs-bar
[TMA255] Suggested People: Taggs bar
Diffstat (limited to 'src/components/onboarding/SocialMediaLinker.tsx')
-rw-r--r-- | src/components/onboarding/SocialMediaLinker.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/onboarding/SocialMediaLinker.tsx b/src/components/onboarding/SocialMediaLinker.tsx index da637f99..559a2990 100644 --- a/src/components/onboarding/SocialMediaLinker.tsx +++ b/src/components/onboarding/SocialMediaLinker.tsx @@ -6,7 +6,7 @@ import { TouchableOpacity, TouchableOpacityProps, } from 'react-native'; -import {LinkerType} from 'src/types'; +import {LinkerType, ScreenType} from '../../types'; import {SOCIAL_FONT_COLORS} from '../../constants/constants'; import {handlePressForAuthBrowser} from '../../services'; import SocialIcon from '../common/SocialIcon'; @@ -66,7 +66,11 @@ const SocialMediaLinker: React.FC<SocialMediaLinkerProps> = ({ activeOpacity={0.7} onPress={handlePress} style={styles.container}> - <SocialIcon social={label} style={styles.icon} /> + <SocialIcon + social={label} + style={styles.icon} + screenType={ScreenType.Profile} + /> <Text style={[styles.label, {color: font_color}]}>{label}</Text> {state.socialLinked && ( <Image |