From d47ec01448d93b86b5ada4ab86c14f123472b5b1 Mon Sep 17 00:00:00 2001
From: Antonin Coquet <ext.sopra.acoquet@grandlyon.com>
Date: Wed, 5 May 2021 14:47:08 +0200
Subject: [PATCH] fix: missing type

---
 src/app/form/form.component.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts
index d01cd1041..ecb8b91cc 100644
--- a/src/app/form/form.component.ts
+++ b/src/app/form/form.component.ts
@@ -152,7 +152,7 @@ export class FormComponent implements OnInit {
     }
   }
 
-  public updateFormOnLogin() {
+  public updateFormOnLogin(): void {
     this.profileService.getProfile().then((user: User) => {
       this.profile = user;
     });
-- 
GitLab