Add user login page #43

Merged
Huffle merged 7 commits from users into main 2025-05-15 11:09:00 +02:00
Showing only changes of commit bfc1d135de - Show all commits

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]);
}
});