From 2a2053c03db06cf5fc04707d23c02497435880b1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Thu, 6 Nov 2025 23:24:00 +0000 Subject: [PATCH] completionId: cgen-3779e92dee434bb183c10a9bc7336ae3 cgen-3779e92dee434bb183c10a9bc7336ae3 --- client/pages/DevLinkProfiles.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 (