From ab6457d95c9021419c776ea2458fbc68559b4ecc Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Wed, 27 Mar 2024 10:39:38 -0500 Subject: [PATCH] Fix issue with updateTopbarTitle --- src/components/ProxyRegistrar.astro | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/ProxyRegistrar.astro b/src/components/ProxyRegistrar.astro index fac39e3..49f6587 100644 --- a/src/components/ProxyRegistrar.astro +++ b/src/components/ProxyRegistrar.astro @@ -212,9 +212,6 @@ } function updateTopbarTitle(iframe) { let topbarTitle = document.getElementById("url-text"); - if (iframe.contentDocument.title == "") { - iframe.contentDocument.title = "Loading..."; - } topbarTitle.innerText = iframe.contentDocument.title; }