mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Skip community node types request on preview mode (no-changelog) (#16876)
This commit is contained in:
@@ -366,7 +366,7 @@ export const useNodeTypesStore = defineStore(STORES.NODE_TYPES, () => {
|
||||
};
|
||||
|
||||
const fetchCommunityNodePreviews = async () => {
|
||||
if (!settingsStore.isCommunityNodesFeatureEnabled) {
|
||||
if (!settingsStore.isCommunityNodesFeatureEnabled || settingsStore.isPreviewMode) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user