From cdb7c11f0267747d21305930621397bc551a74a1 Mon Sep 17 00:00:00 2001 From: just FQQD Date: Mon, 14 Jul 2025 16:36:25 +0000 Subject: [PATCH] Fix "https:://example.com" bug in the usercard --- packages/client/src/components/Profile/UserCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/Profile/UserCard.tsx b/packages/client/src/components/Profile/UserCard.tsx index cc10ae0..b368500 100644 --- a/packages/client/src/components/Profile/UserCard.tsx +++ b/packages/client/src/components/Profile/UserCard.tsx @@ -36,7 +36,7 @@ const HighlightHostname = ({ url }: { url: string }) => { return ( <> - {parsed.current.protocol}://{parsed.current.host} + {parsed.current.protocol}//{parsed.current.host} {parsed.current.pathname} ); -- GitLab