mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +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 () => {
|
const fetchCommunityNodePreviews = async () => {
|
||||||
if (!settingsStore.isCommunityNodesFeatureEnabled) {
|
if (!settingsStore.isCommunityNodesFeatureEnabled || settingsStore.isPreviewMode) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user