diff --git a/packages/tm-core/src/auth/auth-manager.ts b/packages/tm-core/src/auth/auth-manager.ts index b310afb2..7af80230 100644 --- a/packages/tm-core/src/auth/auth-manager.ts +++ b/packages/tm-core/src/auth/auth-manager.ts @@ -83,7 +83,9 @@ export class AuthManager { * Automatically refreshes the token if expired */ async getCredentials(): Promise { - const credentials = this.credentialStore.getCredentials({ allowExpired: true }); + const credentials = this.credentialStore.getCredentials({ + allowExpired: true + }); if (!credentials) { return null;