diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-24 14:04:02 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-24 14:04:02 -0700 |
commit | b8958cda3485af46181e8a6091f12718acfb621c (patch) | |
tree | 9e3422d22e4ccbd71e0dfa4f608e155d57d28092 /src/screens/profile/IndividualMoment.tsx | |
parent | e09f37e73b45a58c0a6ebf8ad8b5216c91713f26 (diff) |
Fix tag lint issues
Diffstat (limited to 'src/screens/profile/IndividualMoment.tsx')
-rw-r--r-- | src/screens/profile/IndividualMoment.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/screens/profile/IndividualMoment.tsx b/src/screens/profile/IndividualMoment.tsx index 4baca5b2..515cbacf 100644 --- a/src/screens/profile/IndividualMoment.tsx +++ b/src/screens/profile/IndividualMoment.tsx @@ -1,17 +1,14 @@ -import AsyncStorage from '@react-native-community/async-storage'; import {BlurView} from '@react-native-community/blur'; import {RouteProp} from '@react-navigation/native'; import {StackNavigationProp} from '@react-navigation/stack'; import React from 'react'; -import {Alert, FlatList, StyleSheet, View} from 'react-native'; +import {FlatList, StyleSheet, View} from 'react-native'; import {useSelector} from 'react-redux'; import { IndividualMomentTitleBar, MomentPostContent, MomentPostHeader, } from '../../components'; -import {MOMENT_TAGS_ENDPOINT} from '../../constants'; -import {ERROR_SOMETHING_WENT_WRONG_REFRESH} from '../../constants/strings'; import {MainStackParams} from '../../routes'; import {RootState} from '../../store/rootreducer'; import {MomentType} from '../../types'; |