From ed228020ac34e315cbc01e518ccd492ea79a9b98 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 12 Aug 2024 01:46:03 -0400 Subject: [PATCH] fix hostname --- composables/hostname.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composables/hostname.js b/composables/hostname.js index d01059d..5a1bb52 100644 --- a/composables/hostname.js +++ b/composables/hostname.js @@ -2,7 +2,7 @@ export default function () { const url = useRequestURL() const config = useRuntimeConfig() - if (url.hostname === 'tinysites') { + if (url.hostname === 'whois.tinysites') { return useState('host', () => config.public.HNS) } else { return useState('host', () => config.public.DNS)