diff --git a/src/Controller/HomeController.php b/src/Controller/HomeController.php
index 6a27413e245f8a2b400aff981fdd99ee158e27e9..8967bd5f668ce2797499102ddae4c220248bd328 100644
--- a/src/Controller/HomeController.php
+++ b/src/Controller/HomeController.php
@@ -17,6 +17,8 @@ class HomeController extends AbstractController
                 'Login' => $this->generateUrl('login'),
                 'My Wishlists' => $this->generateUrl('app_wishlist_index'),
                 'Admin Dashboard' => $this->generateUrl('admin_dashboard'),
+                'Profile' => $this->generateUrl('user_profile'),
+
                         ],
         ]);
     }
diff --git a/src/Controller/WishlistController.php b/src/Controller/WishlistController.php
index 7e1d571ad2b47914f1667103dbf12cc6a7ec0576..611eeccd29dcc0dc6eaba404472251cd6e40f26b 100644
--- a/src/Controller/WishlistController.php
+++ b/src/Controller/WishlistController.php
@@ -21,7 +21,7 @@ final class WishlistController extends AbstractController
 
 
         return $this->render('wishlist/index.html.twig', [
-            'wishlists' => $user->getWishlists()->toArray()
+            'wishlists' => $user->getWishlists()
         ]);
     }
 
@@ -40,7 +40,7 @@ final class WishlistController extends AbstractController
         }
 
         return $this->render('wishlist/new.html.twig', [
-            'wishlist' => $wishlist,
+            'wishlists' => $wishlist,
             'form' => $form,
         ]); 
         
diff --git a/src/Entity/User.php b/src/Entity/User.php
index 3b99380de70e1e5d2765ef69d24c94c023e4f3e1..406c8d520278523a95f205da16acde3176a2d10a 100644
--- a/src/Entity/User.php
+++ b/src/Entity/User.php
@@ -164,7 +164,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface
         return $this->wishlists;
     }
 
-    public function addToAuthorWhishlists(Wishlists $wishlist){
+    public function addToAuthorWhishlists(Wishlist $wishlist){
         if (!$this->wishlists->contains($wishlist)) {
             $this->wishlists[] = $wishlist;
         }       
diff --git a/src/Entity/Wishlist.php b/src/Entity/Wishlist.php
index 9c16360e90dd7fe7e5adfe93d8137a1594cb0313..60d02f6b46676bc0c8339747922d1879a7317770 100644
--- a/src/Entity/Wishlist.php
+++ b/src/Entity/Wishlist.php
@@ -32,6 +32,21 @@ class Wishlist
     #[ORM\OneToMany(targetEntity: Item::class, mappedBy: 'wishlist', orphanRemoval: true)]
     private Collection $items;
 
+    #[ORM\ManyToOne(targetEntity: User::class, inversedBy: 'wishlists')]
+    #[ORM\JoinColumn(nullable: false)]
+    private ?User $owner = null;
+
+    public function getOwner(): ?User
+    {
+        return $this->owner;
+    }
+
+    public function setOwner(?User $owner): static
+    {
+        $this->owner = $owner;
+        return $this;
+    }
+
     public function __construct()
     {
         $this->items = new ArrayCollection();
diff --git a/templates/wishlist/index.html.twig b/templates/wishlist/index.html.twig
index 3f6757e13f54603fcee0fce0623c0a6ec7ab01cb..f08571c4e46059f76d4f5d78d8fa32345f995300 100644
--- a/templates/wishlist/index.html.twig
+++ b/templates/wishlist/index.html.twig
@@ -31,6 +31,6 @@
                 <button title="Delete wishlist">🗑</button>
             </div>
         </div>
-        {% end for %}
+        {% endfor %}
     </div>
     {% endblock %}