aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-05-21 19:18:30 -0400
committerIvan Chen <ivan@tagg.id>2021-05-21 19:18:30 -0400
commitace995d7d0ceb3b0c012f6c29808c05bdb26fe71 (patch)
treeaaee2c587a8f603261a3b1e512eb864dc20aa9a0
parent768c826897d8988f5e91456f213a836a7ba59f4b (diff)
Change imports
-rw-r--r--src/screens/profile/IndividualMoment.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/profile/IndividualMoment.tsx b/src/screens/profile/IndividualMoment.tsx
index f7eb9c96..0c50a642 100644
--- a/src/screens/profile/IndividualMoment.tsx
+++ b/src/screens/profile/IndividualMoment.tsx
@@ -5,13 +5,13 @@ import {StackNavigationProp} from '@react-navigation/stack';
import React from 'react';
import {Alert, FlatList, StyleSheet, View} from 'react-native';
import {useSelector} from 'react-redux';
-import {MOMENT_TAGS_ENDPOINT} from 'src/constants/api';
-import {ERROR_SOMETHING_WENT_WRONG_REFRESH} from 'src/constants/strings';
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';