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/components/taggs/TaggDraggable.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/components/taggs/TaggDraggable.tsx')
-rw-r--r-- | src/components/taggs/TaggDraggable.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/TaggDraggable.tsx b/src/components/taggs/TaggDraggable.tsx index a6ffb1ef..e4448642 100644 --- a/src/components/taggs/TaggDraggable.tsx +++ b/src/components/taggs/TaggDraggable.tsx @@ -9,8 +9,8 @@ import { View, } from 'react-native'; import {useDispatch, useSelector} from 'react-redux'; -import {RootState} from 'src/store/rootReducer'; import Avatar from '../../components/common/Avatar'; +import {RootState} from '../../store/rootReducer'; import {ProfilePreviewType, ScreenType, UserType} from '../../types'; import {normalize} from '../../utils'; import {navigateToProfile} from '../../utils/users'; |