about summary refs log tree commit diff
path: root/src/view/com/lightbox/Image.tsx
diff options
context:
space:
mode:
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}} />