From 0a9ec7f44b6d4634214229af93bd2d0f6a67983d Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Mon, 13 Oct 2025 21:18:46 +0200 Subject: [PATCH] chore: fix format --- packages/tm-core/src/auth/auth-manager.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;