diff --git a/src/app/form/form.component.html b/src/app/form/form.component.html
index aa226359142a7271dbbb5a2e848f9d5bc72dee02..46b374e8754b7dd64adab067332bdfe1761e0ee6 100644
--- a/src/app/form/form.component.html
+++ b/src/app/form/form.component.html
@@ -1151,6 +1151,7 @@
         *ngIf="currentPage == nbPagesForm && profile"
         class="btn-primary unique"
         routerLink="/home"
+        [queryParams]="{ id: createdStructure._id }"
         [state]="{ data: createdStructure }"
       >
         Voir ma structure
@@ -1193,6 +1194,7 @@
       *ngIf="currentPage == nbPagesForm && profile"
       class="btn-primary unique"
       routerLink="/home"
+      [queryParams]="{ id: createdStructure._id }"
       [state]="{ data: createdStructure }"
     >
       Voir ma structure
diff --git a/src/app/user-verification/user-verification.component.html b/src/app/user-verification/user-verification.component.html
index 628bb8efe98b0575616bac18c89923a28424e1f0..c1e11207de2a2234f859bfea4c4f7a6494075bb2 100644
--- a/src/app/user-verification/user-verification.component.html
+++ b/src/app/user-verification/user-verification.component.html
@@ -37,7 +37,13 @@
     ></div>
   </div>
   <div class="btnSection" fxLayout="row" fxLayoutAlign="space-around center">
-    <button *ngIf="structure && verificationSuccess" class="btn" routerLink="/home" [state]="{ data: structure }">
+    <button
+      *ngIf="structure && verificationSuccess"
+      class="btn"
+      routerLink="/home"
+      [queryParams]="{ id: structure._id }"
+      [state]="{ data: structure }"
+    >
       Voir ma structure
     </button>
   </div>