remove console logs

This commit is contained in:
Peter Maquiran
2024-10-17 13:01:24 +01:00
parent 02d5e3e1ec
commit 2e04ef0b20
32 changed files with 316 additions and 960 deletions
+5 -5
View File
@@ -13,17 +13,17 @@ export class SendIntentService {
constructor(
) {
SendIntent.checkSendIntentReceived().then((result: any) => {
// logger
if (result) {
console.log('SendIntent received');
console.log(JSON.stringify(result));
//console.log('SendIntent received');
//console.log(JSON.stringify(result));
}
// event handler
if (result.url) {
this.onReceive(result)
}
}).catch(err => console.error(err));
}
@@ -43,7 +43,7 @@ export class SendIntentService {
if(Platform.prototype.is('ios')) {
this.alertIos();
}
});
window["sharedContent"] = result;