Skip to content

Commit

Permalink
Reference feature toggle in template
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck committed Oct 4, 2024
1 parent e375fc2 commit 222faf6
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ <h1 bitTypography="h1" class="tw-mt-16 tw-pb-2.5">{{ "apiKey" | i18n }}</h1>
<form
*ngIf="org && !loading"
[bitSubmit]="submitCollectionManagement"
[formGroup]="collectionManagementFormGroup"
[formGroup]="
limitCollectionCreationDeletionSplitFeatureFlagIsEnabled
? limitCollectionManagementFormGroup_VNext
: limitCollectionManagementFormGroup
"
>
<h1 bitTypography="h1" class="tw-mt-16 tw-pb-2.5">{{ "collectionManagement" | i18n }}</h1>
<p bitTypography="body1">{{ "collectionManagementDesc" | i18n }}</p>
Expand Down

0 comments on commit 222faf6

Please sign in to comment.