remove console logs

This commit is contained in:
Peter Maquiran
2023-09-22 17:34:39 +01:00
parent e4bba2e68b
commit 6033ecdfb0
6 changed files with 31 additions and 27 deletions
@@ -657,13 +657,13 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
800, // maxHeight
0.9 // quality
).then((picture) => {
console.log('Selected: ', picture)
// console.log('Selected: ', picture)
imageBase64 = picture
});
const blob = this.dataURItoBlob(imageBase64)
console.log(imageBase64)
// console.log(imageBase64)
const formData = new FormData();
formData.append("blobFile", blob);
@@ -720,7 +720,7 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
800, // maxHeight
0.9 // quality
).then((picture) => {
console.log('Selected: ', picture)
// console.log('Selected: ', picture)
imageBase64 = picture
});