style: prettier

This commit is contained in:
Constantin Simonis 2025-02-19 12:31:07 +01:00
parent 7bd06dee62
commit da047eef70
No known key found for this signature in database
GPG key ID: 758DD9C506603183
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ export const routes: Routes = [
{ {
path: 'login/success', path: 'login/success',
loadComponent: () => import('./feature/login-success/login-success.component'), loadComponent: () => import('./feature/login-success/login-success.component'),
}, },
{ {
path: 'home', path: 'home',
loadComponent: () => import('./feature/home/home.component'), loadComponent: () => import('./feature/home/home.component'),

View file

@ -31,7 +31,7 @@ export class UserService {
if (user) { if (user) {
return user; return user;
} }
return await this.createUser(userProfile.id ?? '', userProfile.username ?? '').toPromise(); return await this.createUser(userProfile.id ?? '', userProfile.username ?? '').toPromise();
}); });
} }