diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-15 15:26:45 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-07-15 15:26:45 -0400 |
commit | 6b65929115e031d0bdbb9d663f6a83e9a46a09e1 (patch) | |
tree | e8fda8dbc50aae971c45cf00d3114c7a1ecd2ee5 | |
parent | bc9001004b44f84aa3bd850e6bd3eccbe1ae4c27 (diff) |
Remove floor for z index
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 09a82e32..f0d24f96 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -158,7 +158,7 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { return tags.map((tag) => ({ x: tag.x, y: tag.y, - z: Math.floor(tag.z), + z: tag.z, user_id: tag.user.id, })); }; |