Update dynamic app names for all versions.

This commit is contained in:
Patrick Fic
2024-02-26 11:46:40 -08:00
parent f190c26311
commit 6640ed629d
65 changed files with 700 additions and 230 deletions

View File

@@ -7,6 +7,7 @@ import {createStructuredSelector} from "reselect";
import {techLoginStart} from "../../redux/tech/tech.actions";
import {selectLoginError, selectLoginLoading, selectTechnician,} from "../../redux/tech/tech.selectors";
import AlertComponent from "../alert/alert.component";
import InstanceRenderManager from '../../utils/instanceRenderMgr';
import "./tech-login.styles.scss";
const mapStateToProps = createStructuredSelector({
@@ -38,7 +39,7 @@ export function TechLogin({
}, [technician, navigate]);
useEffect(() => {
document.title = t("titles.techconsole");
document.title = t("titles.techconsole",{app: InstanceRenderManager({imex:'$t(titles.imexonline)', rome: '$t(titles.romeonline)', promanager: '$t(titles.promanager)'})} );
}, [t]);
return (