fix branding favicon and subtitle texts

This commit is contained in:
miloschwartz
2025-12-06 16:16:25 -05:00
parent 6329c3d140
commit 1714140ee7
9 changed files with 23 additions and 40 deletions

View File

@@ -35,6 +35,9 @@ export default function DashboardLoginForm({
const { isUnlocked } = useLicenseStatusContext();
function getSubtitle() {
if (isUnlocked() && env.branding?.loginPage?.subtitleText) {
return env.branding.loginPage.subtitleText;
}
return t("loginStart");
}