diff --git a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts
index 5577cdb38..21391d1f0 100644
--- a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts
+++ b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts
@@ -7,9 +7,9 @@ import { LoaderService } from 'src/app/services/loader.service'
import { combineLatest, Observable, of, Subscription } from 'rxjs'
import { wizardModal } from 'src/app/components/install-wizard/install-wizard.component'
import { WizardBaker } from 'src/app/components/install-wizard/prebaked-wizards'
-import { ConfigService, getManifest } from 'src/app/services/config.service'
+import { ConfigService } from 'src/app/services/config.service'
import { PatchDbModel } from 'src/app/services/patch-db/patch-db.service'
-import { DependencyErrorConfigUnsatisfied, DependencyErrorNotInstalled, DependencyErrorType, Manifest, PackageDataEntry, PackageState } from 'src/app/services/patch-db/data-model'
+import { DependencyErrorConfigUnsatisfied, DependencyErrorNotInstalled, DependencyErrorType, PackageDataEntry, PackageState } from 'src/app/services/patch-db/data-model'
import { FEStatus, PkgStatusRendering, renderPkgStatus } from 'src/app/services/pkg-status-rendering.service'
import { ConnectionService } from 'src/app/services/connection.service'
@@ -279,7 +279,7 @@ export class AppShowPage {
},
{
action: () => this.navCtrl.navigateForward(['manifest'], { relativeTo: this.route }),
- title: 'Package Manifest',
+ title: 'Package Details',
icon: 'finger-print-outline',
color: 'danger',
disabled: [],
diff --git a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.html b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.html
index b1718f32c..901aabfe9 100644
--- a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.html
+++ b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.html
@@ -12,7 +12,7 @@
-
+
diff --git a/ui/src/app/services/loader.service.ts b/ui/src/app/services/loader.service.ts
index 11dd2559b..ca1f5c930 100644
--- a/ui/src/app/services/loader.service.ts
+++ b/ui/src/app/services/loader.service.ts
@@ -70,14 +70,6 @@ export function markAsLoadingDuring$ ($trigger$: Subject, o: Observa
)
}
-export function markAsLoadingDuringP ($trigger$: Subject, p: Promise): Promise {
- return markAsLoadingDuring$($trigger$, from(p)).toPromise()
-}
-
-export function markAsLoadingDuringAsync ($trigger$: Subject, thunk: () => Promise): Promise {
- return markAsLoadingDuringP($trigger$, fromAsyncP(thunk))
-}
-
const defaultOptions: () => LoadingOptions = () => ({
spinner: 'lines',
diff --git a/ui/src/app/services/startup-alerts.notifier.ts b/ui/src/app/services/startup-alerts.notifier.ts
index 3af4e7a2c..a9c09bee6 100644
--- a/ui/src/app/services/startup-alerts.notifier.ts
+++ b/ui/src/app/services/startup-alerts.notifier.ts
@@ -5,7 +5,6 @@ import { WizardBaker } from '../components/install-wizard/prebaked-wizards'
import { OSWelcomePage } from '../modals/os-welcome/os-welcome.page'
import { displayEmver } from '../pipes/emver.pipe'
import { ApiService } from './api/api.service'
-import { RR } from './api/api-types'
import { ConfigService } from './config.service'
import { Emver } from './emver.service'
import { OsUpdateService } from './os-update.service'