Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
isekovanic committed Nov 26, 2024
1 parent 72d7c7d commit 45488c1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const AttachmentVideo = (props: AttachmentVideoProps) => {
const patchVideoFile = (files: File[]) => {
// We need a mime-type to upload a video file.
const mimeType = lookup(asset.name) || 'multipart/form-data';
console.log('SENDING: ', uri, originalUri);
return [
...files,
{
Expand Down Expand Up @@ -171,10 +170,12 @@ const AttachmentImage = (props: AttachmentImageProps) => {
}
};

console.log('URIS: IMG: ', uri, originalUri);

return (
<TouchableOpacity onPress={onPressImage}>
<ImageBackground
source={{ uri: originalUri }}
source={{ uri }}
style={[
{
height: size,
Expand Down

0 comments on commit 45488c1

Please sign in to comment.