diff --git a/packages/editor-ui/src/stores/cloudPlan.store.ts b/packages/editor-ui/src/stores/cloudPlan.store.ts index 3d219f6869..a17f6db035 100644 --- a/packages/editor-ui/src/stores/cloudPlan.store.ts +++ b/packages/editor-ui/src/stores/cloudPlan.store.ts @@ -198,7 +198,7 @@ export const useCloudPlanStore = defineStore(STORES.CLOUD_PLAN, () => { const localStorageFlag = localStorage.getItem(SUGGESTED_TEMPLATES_FLAG); // Don't show if users already opted in - if (localStorageFlag !== 'false') { + if (localStorageFlag !== 'false' && hasPermission(['instanceOwner'])) { await loadSuggestedTemplates(); }