From 54f235e66b9836c8758696fc3b14c7b68c4d7a4c Mon Sep 17 00:00:00 2001 From: Sara Lambert Date: Tue, 7 Nov 2023 16:00:13 -0600 Subject: [PATCH] fix: attempt to fetch user info when page loads --- src/app/app.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 7f5cb16..30bfac1 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -28,6 +28,7 @@ export class AppComponent { } ngOnInit() { + this.userInfoService.fetchUserInfo(); this.comingSoonTimerID = setTimeout(()=>{ this.toggleComingSoonPopup(); }, 2000);