File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
package/src/components/AttachmentPicker/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ const AttachmentVideo = (props: AttachmentVideoProps) => {
5858 const patchVideoFile = ( files : File [ ] ) => {
5959 // We need a mime-type to upload a video file.
6060 const mimeType = lookup ( asset . name ) || 'multipart/form-data' ;
61- console . log ( 'SENDING: ' , uri , originalUri ) ;
6261 return [
6362 ...files ,
6463 {
@@ -171,10 +170,12 @@ const AttachmentImage = (props: AttachmentImageProps) => {
171170 }
172171 } ;
173172
173+ console . log ( 'URIS: IMG: ' , uri , originalUri ) ;
174+
174175 return (
175176 < TouchableOpacity onPress = { onPressImage } >
176177 < ImageBackground
177- source = { { uri : originalUri } }
178+ source = { { uri } }
178179 style = { [
179180 {
180181 height : size ,
You can’t perform that action at this time.
0 commit comments