diff --git a/src/app/components/post-card/post-card.component.scss b/src/app/components/post-card/post-card.component.scss index 647742a..3380276 100644 --- a/src/app/components/post-card/post-card.component.scss +++ b/src/app/components/post-card/post-card.component.scss @@ -41,8 +41,9 @@ } img { - width: 24px; - height: 24px; + width: 1.75rem; + height: 1.75rem; + border-radius: 50%; } } diff --git a/src/app/views/auth/user-profile/user-profile.component.ts b/src/app/views/auth/user-profile/user-profile.component.ts index f8bd376..269f20e 100644 --- a/src/app/views/auth/user-profile/user-profile.component.ts +++ b/src/app/views/auth/user-profile/user-profile.component.ts @@ -99,7 +99,7 @@ export class UserProfileComponent implements OnInit { async logOut() { try { await this.authService.logout(); - this.router.navigate(['/login']); + this.router.navigate(['/auth/login']); } catch (error) { console.error('Error logging out:', error); this.snackBar.open('Error logging out', 'Close', {