We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6403a8c commit 1a3c96dCopy full SHA for 1a3c96d
packages/compass-indexes/src/components/create-index-form/create-index-form.tsx
@@ -80,6 +80,9 @@ function CreateIndexForm({
80
});
81
}, [schemaFields]);
82
83
+ const showIndexesGuidanceQueryFlow =
84
+ showIndexesGuidanceVariant && currentTab === 'QueryFlow';
85
+
86
return (
87
<>
88
<div
@@ -125,7 +128,7 @@ function CreateIndexForm({
125
128
/>
126
129
) : null}
127
130
- {currentTab === 'QueryFlow' && <QueryFlowSection />}
131
+ {showIndexesGuidanceQueryFlow && <QueryFlowSection />}
132
</div>
133
<Accordion data-testid="create-index-modal-toggle-options" text="Options">
134
0 commit comments