Remove relevant console log,

This commit is contained in:
Eudes Inácio
2022-04-28 09:32:27 +01:00
parent 3021e8b0e1
commit 2826cea9df
153 changed files with 1001 additions and 1132 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ export class RouteService {
* @param url [string] incase no history to go back */
goBack(url = null) {
if(this.history.length >= 2) {
console.log(this.history);
this.history.pop();
const url = this.history.pop();
@@ -83,7 +83,7 @@ export class RouteService {
params[key] = value
}
console.log('params', params)
return params
}