diff options
Diffstat (limited to 'src/components/taggs/Tagg.tsx')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index d6cffee5..9274e0eb 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -6,17 +6,18 @@ import {TAGGS_GRADIENT} from '../../constants'; interface TaggProps { style: object; + social: string; isProfileView: boolean; } -const Tagg: React.FC<TaggProps> = ({style, isProfileView}) => { +const Tagg: React.FC<TaggProps> = ({style, social, isProfileView}) => { const navigation = useNavigation(); return ( <TouchableOpacity onPress={() => navigation.navigate('SocialMediaTaggs', { - socialMediaType: 'Instagram', + socialMediaType: social, isProfileView: isProfileView, }) }> |