diff --git a/src/app/pages/apps/store/installed-apps-store.service.ts b/src/app/pages/apps/store/installed-apps-store.service.ts index fe28fa629dd2..5ff73587478f 100644 --- a/src/app/pages/apps/store/installed-apps-store.service.ts +++ b/src/app/pages/apps/store/installed-apps-store.service.ts @@ -155,7 +155,6 @@ export class InstalledAppsStore extends ComponentStore imple withLatestFrom(this.dockerStore.isDockerStarted$), filter(([isLoading, isDockerStarted]) => !isLoading && isDockerStarted !== null), switchMap(([, isDockerStarted]) => { - this.appsStats.subscribeToUpdates(); this.subscribeToInstalledAppsUpdates(); if (!isDockerStarted) { @@ -164,6 +163,7 @@ export class InstalledAppsStore extends ComponentStore imple return this.appsService.getAllApps().pipe( tap((installedApps) => { + this.appsStats.subscribeToUpdates(); this.patchState({ installedApps: [...installedApps], });