Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/components/navbar/UserProfileDropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import Link from "next/link";
import { UserCircle, ClipboardList, Bookmark } from "lucide-react";
import { UserCircle, ClipboardList, Heart } from "lucide-react";
import { cn } from "@/lib/utils";

interface UserProfileDropdownProps {
Expand Down Expand Up @@ -59,8 +59,8 @@ export function UserProfileDropdown({ isOpen, onClose }: UserProfileDropdownProp
)}
role="menuitem"
>
<Bookmark className="h-5 w-5" />
<span>Saved Listings</span>
<Heart className="h-5 w-5" />
<span>Favorite Listings</span>
</Link>

<Link
Expand Down
Loading