feat: Add supportsConnections flag to individual steps

This commit is contained in:
Faruk AYDIN
2025-01-14 11:40:32 +01:00
parent 4c13c850fc
commit 0f15cb1a06

View File

@@ -74,7 +74,7 @@ const addStaticSubsteps = (stepType, appData, step) => {
computedStep.substeps = [];
if (appData.supportsConnections) {
if (appData.supportsConnections && step.supportsConnections !== false) {
computedStep.substeps.push(chooseConnectionStep);
}