diff --git a/src/Umbraco.Web.UI.Client/src/auth/login/umb-login.element.ts b/src/Umbraco.Web.UI.Client/src/auth/login/umb-login.element.ts
index 093cc752df..b223acb143 100644
--- a/src/Umbraco.Web.UI.Client/src/auth/login/umb-login.element.ts
+++ b/src/Umbraco.Web.UI.Client/src/auth/login/umb-login.element.ts
@@ -60,7 +60,7 @@ export class UmbLogin extends LitElement {
'Happy wonderful Wednesday',
'Happy thunderous Thursday',
'Happy funky Friday',
- 'Happy Caturday',
+ 'Happy Saturday',
];
@state()
diff --git a/src/Umbraco.Web.UI.Client/src/umb-app.ts b/src/Umbraco.Web.UI.Client/src/umb-app.ts
index ac5a13a8bf..5c6f42a37c 100644
--- a/src/Umbraco.Web.UI.Client/src/umb-app.ts
+++ b/src/Umbraco.Web.UI.Client/src/umb-app.ts
@@ -43,14 +43,16 @@ export class UmbApp extends LitElement {
this._getUser();
};
+ private _renderBackoffice = () => html`hej`;
+
+ private _renderAuth = () => html`
+
+
+
+ `;
+
render() {
- return html`
- ${this._authorized
- ? html`
-
- `
- : html`hej`}
- `;
+ return html` ${this._authorized ? this._renderBackoffice() : this._renderAuth()} `;
}
}