Skip to content

Commit 43e0ec5

Browse files
authored
fix: adds feature flag to display woz assign (#260)
1 parent ee05920 commit 43e0ec5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/builder/components/editor/StepsSideBar/StepSideBar.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,11 @@ export const StepsSideBar = () => {
225225
verifyFeatureToggle('commerce-enabled')
226226
)
227227

228-
const wozAssign = Object.values(WOZStepType).filter((step) =>
229-
shouldShowComponent(step) && step === WOZStepType.ASSIGN
228+
const wozAssign = Object.values(WOZStepType).filter(
229+
(step) =>
230+
shouldShowComponent(step) &&
231+
step === WOZStepType.ASSIGN &&
232+
verifyFeatureToggle('woz-in-bot')
230233
)
231234

232235
const wozInterpretDataWithAI = Object.values(WOZStepType).filter(

0 commit comments

Comments
 (0)