From 92e51b63bec725d99935665e41b553bb77f5fdd6 Mon Sep 17 00:00:00 2001 From: Luck Date: Wed, 27 Aug 2025 22:03:38 +0100 Subject: [PATCH] Update about hostname check --- src/components/About.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/About.tsx b/src/components/About.tsx index 2357761..6da1ce1 100644 --- a/src/components/About.tsx +++ b/src/components/About.tsx @@ -30,7 +30,7 @@ export default function About({ }: { setVisible: (show: boolean) => void; }) { - const official = window.location.hostname === 'localhost'; + const official = window.location.hostname === 'pastes.dev'; const [showTos, setShowTos] = useState(false); if (showTos) {