From 97b270ccd8fea6795d0facbafb37a67f10c047f3 Mon Sep 17 00:00:00 2001 From: hinakhadim Date: Mon, 4 Mar 2024 11:18:36 +0500 Subject: [PATCH] fix: browser header showing null and replace authn with Authentication --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 8214f79888..6938f1153b 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,7 @@ - <%= process.env.SITE_NAME ? 'Authn | ' + process.env.SITE_NAME : 'Authn' %> + <%= (process.env.SITE_NAME && process.env.SITE_NAME != 'null') ? 'Authentication | ' + process.env.SITE_NAME : 'Authentication' %>