aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-03-31 15:08:59 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-03-31 15:08:59 -0400
commit2031579ce6033fbe67a78b66d3da2ee6872748de (patch)
treef9d08a73d3e0dcfeeee269adc3f33ad1a62f3580 /ufund-ui/src/app/app.component.ts
parentec88317c75ec907c319412502a1b189c97db9173 (diff)
downloadJellySolutions-2031579ce6033fbe67a78b66d3da2ee6872748de.tar.gz
JellySolutions-2031579ce6033fbe67a78b66d3da2ee6872748de.tar.bz2
JellySolutions-2031579ce6033fbe67a78b66d3da2ee6872748de.zip
Removed old logging
Diffstat (limited to 'ufund-ui/src/app/app.component.ts')
-rw-r--r--ufund-ui/src/app/app.component.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/ufund-ui/src/app/app.component.ts b/ufund-ui/src/app/app.component.ts
index 94a6439..df9114e 100644
--- a/ufund-ui/src/app/app.component.ts
+++ b/ufund-ui/src/app/app.component.ts
@@ -34,16 +34,12 @@ export class AppComponent implements OnInit {
}
ngOnInit() {
- console.log("AAAAAAAAAAAAAAAA")
this.currentUser = this.authService.getCurrentUserSubject()
let data = localStorage.getItem("credential");
if (data) {
let dataParsed = JSON.parse(data)
this.authService.restoreLogin(dataParsed.username, dataParsed.key)
console.log("Key found", dataParsed.key)
- } else {
- console.log("key missing")
- console.log(data)
}
}