Skip to content

Commit fe4035b

Browse files
committed
Disable the home alerting page
1 parent 576e5ac commit fe4035b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

public/app/features/alerting/routes.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,12 @@ const unifiedRoutes: RouteDescriptor[] = [
103103
...commonRoutes,
104104
{
105105
path: '/alerting',
106-
component: SafeDynamicImport(
107-
() => import(/* webpackChunkName: "AlertingHome" */ 'app/features/alerting/unified/home/Home')
108-
),
106+
component: () => <Redirect to={'/alerting/list'} />, // LOGZ.IO CHANGE :: DEV-46520 - DISABLE ALERTING HOME
109107
},
110108
{
111109
path: '/alerting/home',
112110
exact: false,
113-
component: SafeDynamicImport(
114-
() => import(/* webpackChunkName: "AlertingHome" */ 'app/features/alerting/unified/home/Home')
115-
),
111+
component: () => <Redirect to={'/alerting/list'} />, // LOGZ.IO CHANGE :: DEV-46520 - DISABLE ALERTING HOME
116112
},
117113
{
118114
path: '/alerting/list',

0 commit comments

Comments
 (0)