1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

fix: move feature flag to correct grouping, update casing, update callers, refs PM-17763 (#13184)

This commit is contained in:
Vincent Salucci
2025-01-31 12:18:17 -06:00
committed by GitHub
parent 8e70d5b923
commit 22edfd4283
2 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ export class AccountComponent implements OnInit, OnDestroy {
this.selfHosted = this.platformUtilsService.isSelfHost();
this.configService
.getFeatureFlag$(FeatureFlag.limitItemDeletion)
.getFeatureFlag$(FeatureFlag.LimitItemDeletion)
.pipe(takeUntil(this.destroy$))
.subscribe((isAble) => (this.limitItemDeletionFeatureFlagIsEnabled = isAble));