about summary refs log tree commit diff
path: root/src/view/com/lightbox/Image.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-16 11:57:45 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-16 11:57:45 -0600
commit3aded6887d8b89bccd7c8aa31306f94336ee1123 (patch)
tree184e7f732f244b1b64505df7a8e945efbc03f22f /src/view/com/lightbox/Image.tsx
parent3a44a1cfdcd664ebf71fdf7edc89c460acdaa558 (diff)
downloadvoidsky-3aded6887d8b89bccd7c8aa31306f94336ee1123.tar.zst
Add swipe gestures to the lightbox
Diffstat (limited to 'src/view/com/lightbox/Image.tsx')
-rw-r--r--src/view/com/lightbox/Image.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/view/com/lightbox/Image.tsx b/src/view/com/lightbox/Image.tsx
index 2e3307774..a620e949e 100644
--- a/src/view/com/lightbox/Image.tsx
+++ b/src/view/com/lightbox/Image.tsx
@@ -4,7 +4,6 @@ import {Image, StyleSheet, useWindowDimensions, View} from 'react-native'
 export function Component({uri}: {uri: string}) {
   const winDim = useWindowDimensions()
   const top = winDim.height / 2 - (winDim.width - 40) / 2 - 100
-  console.log(uri)
   return (
     <View style={[styles.container, {top}]}>
       <Image style={styles.image} source={{uri}} />