aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Rusu <george@tagg.id>2021-07-13 16:14:49 -0700
committerIvan Chen <ivan@tagg.id>2021-07-15 14:56:25 -0400
commitd012373314f1af1b02e35994cce9f4450380b35e (patch)
treea8e884ef2d82a6e997f2a233aa6a759c135d3b95 /src
parentfb63fdf195a2e81a03301cfbf54d5c284b8c82cf (diff)
Remove floor
Diffstat (limited to 'src')
-rw-r--r--src/screens/profile/CaptionScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx
index 1232eb66..09a82e32 100644
--- a/src/screens/profile/CaptionScreen.tsx
+++ b/src/screens/profile/CaptionScreen.tsx
@@ -156,8 +156,8 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => {
const formattedTags = () => {
return tags.map((tag) => ({
- x: Math.floor(tag.x),
- y: Math.floor(tag.y),
+ x: tag.x,
+ y: tag.y,
z: Math.floor(tag.z),
user_id: tag.user.id,
}));