Skip to content

Commit

Permalink
fix(cdp): batch exports only in destinations list (#26940)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra authored Dec 17, 2024
1 parent 257eae1 commit b131457
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,12 @@ export const pipelineDestinationsLogic = kea<pipelineDestinationsLogicType>([
},
})),

afterMount(({ actions }) => {
afterMount(({ actions, props }) => {
actions.loadPlugins()
actions.loadPluginConfigs()
actions.loadBatchExports()
if (props.types.includes('destination')) {
actions.loadBatchExports()
}
actions.loadHogFunctions()
}),
])

0 comments on commit b131457

Please sign in to comment.