Skip to content

Commit

Permalink
Gitar Duet for #8201
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 20, 2024
1 parent 24ac541 commit 70aab3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/features/feature-toggle/feature-toggle-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,8 @@ class FeatureToggleService {
await this.validateName(value.name);
await this.validateFeatureFlagNameAgainstPattern(value.name, projectId);

let projectExists = await this.projectStore.hasActiveProject(projectId);
const projectExists =
await this.projectStore.hasActiveProject(projectId);

if (await this.projectStore.isFeatureLimitReached(projectId)) {
throw new InvalidOperationError(
Expand Down

0 comments on commit 70aab3a

Please sign in to comment.