diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2020-10-27 20:44:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-27 20:44:36 -0400 |
| commit | 24c269c9d52ec7cf2cd383a8d7c3aee43ed475c1 (patch) | |
| tree | 39044f1b6a4f52db941a75f9fa30a1184bf06720 /src/screens | |
| parent | b41a975012172ba336b27ab3d64ed078b07633cd (diff) | |
[TMA-180] Image Carousel for Tagg Posts (#77)
* image carousel done
* fixed a minor bug
* TikTok is TikTok NOT Tiktok OKAY?
Co-authored-by: Husam Salhab <47015061+hsalhab@users.noreply.github.com>
Diffstat (limited to 'src/screens')
| -rw-r--r-- | src/screens/profile/SocialMediaTaggs.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/profile/SocialMediaTaggs.tsx b/src/screens/profile/SocialMediaTaggs.tsx index 2a319326..4b63b843 100644 --- a/src/screens/profile/SocialMediaTaggs.tsx +++ b/src/screens/profile/SocialMediaTaggs.tsx @@ -1,5 +1,5 @@ import {RouteProp} from '@react-navigation/native'; -import React, {useEffect, useState} from 'react'; +import React from 'react'; import {ScrollView, StatusBar, StyleSheet, View} from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; import { @@ -10,8 +10,7 @@ import { } from '../../components'; import {AVATAR_GRADIENT} from '../../constants'; import {AuthContext, ProfileContext, ProfileStackParams} from '../../routes'; -import {loadSocialPosts} from '../../services'; -import {SimplePostType, SocialAccountType, TwitterPostType} from '../../types'; +import {SimplePostType, TwitterPostType} from '../../types'; import {headerBarHeightWithImage, SCREEN_HEIGHT} from '../../utils'; type SocialMediaTaggsRouteProp = RouteProp< |
