feat(editor): Update suggested workflows experiment (no-changelog) (#17701)

This commit is contained in:
Romeo Balta
2025-07-28 09:45:58 +01:00
committed by GitHub
parent 980878398e
commit 2043c6da53
10 changed files with 228 additions and 182 deletions

View File

@@ -41,9 +41,7 @@ export const useCloudPlanStore = defineStore(STORES.CLOUD_PLAN, () => {
const currentUsageData = computed(() => state.usage);
const selectedApps = computed(
() => currentUserCloudInfo.value?.selectedApps?.split(',').filter(Boolean) ?? [],
);
const selectedApps = computed(() => currentUserCloudInfo.value?.selectedApps);
const codingSkill = computed(() => {
const information = currentUserCloudInfo.value?.information;
if (!information) {