@@ -82,6 +82,7 @@ const LazyAppSecurityReport = lazy(() => import('./AppSecurityReport/AppSecurity
8282const LazyDatabaseProfile = lazy ( ( ) => import ( './DatabaseProfiler/DatabaseProfiler.react' ) ) ;
8383const LazyEmailVerification = lazy ( ( ) => import ( './Notification/EmailVerification.react' ) ) ;
8484const LazyEmailPasswordReset = lazy ( ( ) => import ( './Notification/EmailPasswordReset.react' ) ) ;
85+ const LazyPushAndroidSettings = lazy ( ( ) => import ( './Push/PushAndroidSettings.react' ) ) ;
8586
8687
8788async function fetchHubUser ( ) {
@@ -162,6 +163,7 @@ const preloadMap = {
162163 appPlan : ( ) => import ( './AppPlan/AppPlan.react' ) ,
163164 emailVerification : ( ) => import ( './Notification/EmailVerification.react' ) ,
164165 emailPasswordReset : ( ) => import ( './Notification/EmailPasswordReset.react' ) ,
166+ pushAndroidSettings : ( ) => import ( './Push/PushAndroidSettings.react' ) ,
165167} ;
166168
167169// Preload all routes with proper error handling and logging
@@ -504,6 +506,7 @@ class Dashboard extends React.Component {
504506 < Route path = "push/activity/:category" element = { < PushIndex /> } />
505507 < Route path = "push/audiences" element = { < PushAudiencesIndex /> } />
506508 < Route path = "push/new" element = { < PushNew /> } />
509+ < Route path = "push/android-settings" element = { < LazyComponentWrapper > < LazyPushAndroidSettings /> </ LazyComponentWrapper > } />
507510 < Route path = "push/:pushId" element = { < PushDetails /> } />
508511
509512 < Route path = "connect" element = { < B4aConnectPage /> } />
0 commit comments