From 5b2dbfc933d4f544da93360a1c5f369f6882fd19 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 15 May 2026 18:13:19 +0200 Subject: [PATCH] fix(appstore): fix reference to non-existing `forceEnableApp` function Signed-off-by: Ferdinand Thiessen --- apps/appstore/src/actions/actionForceEnable.ts | 2 +- .../src/components/AppstoreBrowse/OfficeSuiteSwitcher.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/appstore/src/actions/actionForceEnable.ts b/apps/appstore/src/actions/actionForceEnable.ts index 7b8f08768ee2f..3e8a2f90546d6 100644 --- a/apps/appstore/src/actions/actionForceEnable.ts +++ b/apps/appstore/src/actions/actionForceEnable.ts @@ -23,6 +23,6 @@ export const actionForceEnable: AppAction = { }, async callback(app: IAppstoreApp | IAppstoreExApp) { const store = useAppsStore() - await store.forceEnableApp(app.id) + await store.enableApp(app.id, true) }, } diff --git a/apps/appstore/src/components/AppstoreBrowse/OfficeSuiteSwitcher.vue b/apps/appstore/src/components/AppstoreBrowse/OfficeSuiteSwitcher.vue index b0b0adcb1b51d..88503ee2ad801 100644 --- a/apps/appstore/src/components/AppstoreBrowse/OfficeSuiteSwitcher.vue +++ b/apps/appstore/src/components/AppstoreBrowse/OfficeSuiteSwitcher.vue @@ -91,7 +91,7 @@ async function onSuiteChanged(newSuiteId: string | null, oldSuiteId: string | nu }) if (result) { - await store.forceEnableApp(suite.appId) + await store.enableApp(suite.appId, true) } else { // Revert selection selectedSuiteId.value = oldSuiteId