fix: correct typo in property name from "Entreprise" to "Enterprise" (#9916)

The property name "hasValidEntrepriseKey" was corrected to
"hasValidEnterpriseKey" across multiple files for consistency and
accuracy. This ensures proper alignment with naming conventions and
avoids potential issues in usage or understanding.
This commit is contained in:
Antoine Moreaux
2025-01-29 17:39:04 +01:00
committed by GitHub
parent 04bc42aa47
commit ce8c6c4bac
9 changed files with 16 additions and 15 deletions

View File

@ -216,7 +216,7 @@ export class WorkspaceResolver {
}
@ResolveField(() => Boolean)
hasValidEntrepriseKey(): boolean {
hasValidEnterpriseKey(): boolean {
return isDefined(this.environmentService.get('ENTERPRISE_KEY'));
}