Skip to content

Commit 45488c1

Browse files
committed
chore: remove console.log
1 parent 72d7c7d commit 45488c1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

package/src/components/AttachmentPicker/components/AttachmentPickerItem.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)