Remove console.log

This commit is contained in:
Huffle 2025-05-15 11:04:15 +02:00
parent 0749d8ce7a
commit bfc1d135de

View File

@ -13,7 +13,6 @@ export class AppComponent {
this.storageService.init().then(() => {
this.storageService.getCurrentUserId().then((userId) => {
if (userId !== undefined && userId !== null) {
console.log('userId: ', userId);
this.router.navigate(['/tabs/allowance', userId]);
}
});