Skip to content

Commit 5e9874e

Browse files
committed
Fix variable name
1 parent 3158e02 commit 5e9874e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/services/api/src/modules/organization/providers/organization-access-tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ export class OrganizationAccessTokens {
898898
const isOTELTracingEnabled = organization.featureFlags.otelTracing || this.otelTracingEnabled;
899899

900900
return (id: Permission) =>
901-
(!isAppDeplymentsEnabled && id.startsWith('appDeployment:')) ||
901+
(!isAppDeploymentsEnabled && id.startsWith('appDeployment:')) ||
902902
(!isOTELTracingEnabled && id.startsWith('traces:'))
903903
? false
904904
: true;

0 commit comments

Comments
 (0)