diff --git a/frontend/src/scenes/pipeline/destinations/destinationsLogic.tsx b/frontend/src/scenes/pipeline/destinations/destinationsLogic.tsx index 42f8112f99b6c..ea6bf3346687c 100644 --- a/frontend/src/scenes/pipeline/destinations/destinationsLogic.tsx +++ b/frontend/src/scenes/pipeline/destinations/destinationsLogic.tsx @@ -338,10 +338,12 @@ export const pipelineDestinationsLogic = kea([ }, })), - afterMount(({ actions }) => { + afterMount(({ actions, props }) => { actions.loadPlugins() actions.loadPluginConfigs() - actions.loadBatchExports() + if (props.types.includes('destination')) { + actions.loadBatchExports() + } actions.loadHogFunctions() }), ])