diff --git a/client/pages/DevLinkProfiles.tsx b/client/pages/DevLinkProfiles.tsx index 69e8e9cd..f1248572 100644 --- a/client/pages/DevLinkProfiles.tsx +++ b/client/pages/DevLinkProfiles.tsx @@ -1,10 +1,12 @@ import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; -import { useNavigate } from "react-router-dom"; +import { useNavigate, useLocation } from "react-router-dom"; import { ExternalLink } from "lucide-react"; export default function DevLinkProfiles() { const navigate = useNavigate(); + const location = useLocation(); + const isWaitlist = location.pathname.includes("/waitlist"); return (