diff --git a/app/marketplace/page.tsx b/app/marketplace/page.tsx index 705b257..9a35500 100644 --- a/app/marketplace/page.tsx +++ b/app/marketplace/page.tsx @@ -86,8 +86,7 @@ export default function MarketplacePage() { } function handleEditProfile() { - console.log("Edit profile"); - // TODO: navigate to profile page or open modal + router.push("/profile"); } return ( diff --git a/app/profile/labs/new/page.tsx b/app/profile/labs/new/page.tsx index 7daf54d..2d0ad76 100644 --- a/app/profile/labs/new/page.tsx +++ b/app/profile/labs/new/page.tsx @@ -1,6 +1,13 @@ import Link from "next/link"; import { ChevronDown } from "lucide-react"; +const roleOptions = [ + { value: "PI", label: "PI" }, + { value: "LAB_MANAGER", label: "Lab Manager" }, + { value: "RESEARCHER", label: "Researcher" }, + { value: "VIEWER", label: "Viewer" }, +] as const; + type LabOption = { id: string; name: string; @@ -64,13 +71,24 @@ export default function AddLabAffiliationPage() { > Lab Role - +