diff --git a/src/frontend/app/document/visa-workflow/visa-workflow.component.ts b/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
index 0bd6f95629e1dc8124afa97a156a18b41bd6f8bc..d10a91d67bcd70543acd7f0db0aa3561b5ab44b8 100644
--- a/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
+++ b/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
@@ -225,7 +225,7 @@ export class VisaWorkflowComponent implements OnInit {
 
     getUserInfo(userId: number) {
         return new Promise((resolve) => {
-            this.http.get(`../rest/users/${userId}?mode=summary`).pipe(
+            this.http.get(`../rest/users/${userId}`).pipe(
                 tap((data: any) => {
                     resolve({
                         firstname: data.user.firstname,