From 27633d47213def21c0119dddbe6ccc22c7d55578 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 11 Jul 2024 09:58:49 -0400 Subject: [PATCH 1/2] remove blank page route --- app/src/app/app.routes.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/src/app/app.routes.ts b/app/src/app/app.routes.ts index 8bb87e38ae..65bdfe16cf 100644 --- a/app/src/app/app.routes.ts +++ b/app/src/app/app.routes.ts @@ -22,14 +22,9 @@ * from Hyland Software. If not, see . */ -import { BlankPageComponent } from '@alfresco/adf-core'; import { AppLoginComponent } from './components/login/app-login.component'; export const APP_ROUTES = [ - { - path: 'blank', - component: BlankPageComponent - }, { path: 'login', component: AppLoginComponent, From 988c843c037ee7cc8f4531ab217d0e6b8e12dfd5 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 11 Jul 2024 10:00:10 -0400 Subject: [PATCH 2/2] remove blank page route --- app/src/app.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/app.config.json b/app/src/app.config.json index 4654d5278f..008b252875 100644 --- a/app/src/app.config.json +++ b/app/src/app.config.json @@ -24,7 +24,7 @@ "implicitFlow": false, "codeFlow": true, "silentLogin": true, - "publicUrls": ["**/preview/s/*", "**/settings", "**/blank"], + "publicUrls": ["**/preview/s/*", "**/settings"], "redirectSilentIframeUri": "{protocol}//{hostname}{:port}/assets/silent-refresh.html", "redirectUri": "/", "redirectUriLogout": "/",