aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/CaptionScreen.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-15 15:26:45 -0400
committerIvan Chen <ivan@tagg.id>2021-07-15 15:26:45 -0400
commit6b65929115e031d0bdbb9d663f6a83e9a46a09e1 (patch)
treee8fda8dbc50aae971c45cf00d3114c7a1ecd2ee5 /src/screens/profile/CaptionScreen.tsx
parentbc9001004b44f84aa3bd850e6bd3eccbe1ae4c27 (diff)
Remove floor for z index
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
-rw-r--r--src/screens/profile/CaptionScreen.tsx2
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,
}));
};