diff --git a/src/components/status.jsx b/src/components/status.jsx index 7824f778..8b94b5b9 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -181,7 +181,7 @@ function Card({ card }) { const hasText = title || providerName || authorName; if (hasText && image) { - const domain = new URL(url).hostname; + const domain = new URL(url).hostname.replace(/^www\./, ''); return (
+

{domain}

{providerName || authorName}

-

{domain}

);