diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-25 18:55:42 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-05-25 18:55:42 -0400 |
commit | 6fd5a5516595d1731af35e1cef9607ce7b32e8f6 (patch) | |
tree | 731d5877e8ba05379ab8e327843292d7c4f87125 /src/screens | |
parent | 438ac0d1f82a95367b374b56f9c61a7a5802735c (diff) |
More investigation with draggable, Progress
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/moments/TagFriendsScreen.tsx | 5 | ||||
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/screens/moments/TagFriendsScreen.tsx b/src/screens/moments/TagFriendsScreen.tsx index b2a8586a..b9b35742 100644 --- a/src/screens/moments/TagFriendsScreen.tsx +++ b/src/screens/moments/TagFriendsScreen.tsx @@ -97,8 +97,9 @@ const TagFriendsScreen: React.FC<TagFriendsScreenProps> = ({route}) => { editing={true} tags={taggedUsers.map((user) => ({ id: '', - x: 0, - y: 0, + x: 50, + y: 50, + z: 1, user, }))} imageRef={imageRef} diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index e2fce032..69f4b3d9 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -116,8 +116,8 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { const momentTagResponse = await postMomentTags( momentResponse.moment_id, taggedUsers.map((u, index) => ({ - x: index * 50 - 150, - y: index * 50 - 150, + x: index * 50, + y: index * 50, z: 1, user_id: u.id, })), |