diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-05-21 20:10:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-21 20:10:14 -0400 |
| commit | 4849c65ff2163e1a77dcb26a12ff68840df225e7 (patch) | |
| tree | 8efb8f40c23156551a3628c3eac93945980a7325 /src/screens/profile/IndividualMoment.tsx | |
| parent | 9315aa31ad4d6c305e62853a3ab7e4a484ecce98 (diff) | |
| parent | 4434d06df897f844832a92d66956825ea58c2b01 (diff) | |
Merge pull request #440 from grusuTagg/tma884-moment-view-tags
Fetch momentTag objects from the backend
Diffstat (limited to 'src/screens/profile/IndividualMoment.tsx')
| -rw-r--r-- | src/screens/profile/IndividualMoment.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/screens/profile/IndividualMoment.tsx b/src/screens/profile/IndividualMoment.tsx index 515cbacf..4baca5b2 100644 --- a/src/screens/profile/IndividualMoment.tsx +++ b/src/screens/profile/IndividualMoment.tsx @@ -1,14 +1,17 @@ +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 {FlatList, StyleSheet, View} from 'react-native'; +import {Alert, 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'; |
