Commit cdb7c11f authored by FQQD's avatar FQQD
Browse files

Fix "https:://example.com" bug in the usercard

parent 12dabc85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ const HighlightHostname = ({ url }: { url: string }) => {

  return (
    <>
      {parsed.current.protocol}://<strong>{parsed.current.host}</strong>
      {parsed.current.protocol}//<strong>{parsed.current.host}</strong>
      {parsed.current.pathname}
    </>
  );