diff --git a/src/components/structures/auth/LoginSplashView.tsx b/src/components/structures/auth/LoginSplashView.tsx index 808b97ff41..2ae13ce147 100644 --- a/src/components/structures/auth/LoginSplashView.tsx +++ b/src/components/structures/auth/LoginSplashView.tsx @@ -23,6 +23,7 @@ import ProgressBar from "../../views/elements/ProgressBar"; import AccessibleButton, { ButtonEvent } from "../../views/elements/AccessibleButton"; import { _t } from "../../../languageHandler"; import { useTypedEventEmitterState } from "../../../hooks/useEventEmitter"; +import SdkConfig from "../../../SdkConfig"; interface Props { /** The matrix client which is logging in */ @@ -65,7 +66,7 @@ export function LoginSplashView(props: Props): React.JSX.Element { if (migrationState.totalSteps !== -1) { spinnerOrProgress = (
{_t("migrating_crypto")}
+{_t("migrating_crypto", { brand: SdkConfig.get().brand })}