From 188a2f2023816405f2b4f3806f23ec4f18acdde8 Mon Sep 17 00:00:00 2001 From: Carter Date: Wed, 14 May 2025 12:49:20 -0600 Subject: [PATCH] replacing title instead of href --- src/app/App.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index efd014b..ceb1a41 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -37,12 +37,9 @@ function App() { faviconDocument.href = "BrandXTechnologies/favicon.ico" }) - // Set favicon + // Set title const titleDocument = document.getElementById("title-id") as HTMLLinkElement; - if (titleDocument) { - console.log(whiteLabel.name) - titleDocument.href = whiteLabel.name; - } + if (titleDocument) titleDocument.title = whiteLabel.name; let domain: string | undefined = import.meta.env.VITE_AUTH0_CLIENT_DOMAIN; let audience: string | undefined = import.meta.env.VITE_AUTH0_AUDIENCE;