diff --git a/plugins/auth-backend/src/identity/TokenFactory.ts b/plugins/auth-backend/src/identity/TokenFactory.ts index 963251f42b..99ea26a7fb 100644 --- a/plugins/auth-backend/src/identity/TokenFactory.ts +++ b/plugins/auth-backend/src/identity/TokenFactory.ts @@ -117,7 +117,7 @@ export class TokenFactory implements TokenIssuer { } private async getKey(): Promise { - // Make sure that we only generate one key at a time¨ + // Make sure that we only generate one key at a time if (this.privateKeyPromise) { if (this.keyExpiry && this.keyExpiry > DateTime.local()) { return this.privateKeyPromise;