chore: fix format

This commit is contained in:
Ralph Khreish
2025-10-13 21:18:46 +02:00
parent 8ee37d6812
commit 0a9ec7f44b

View File

@@ -83,7 +83,9 @@ export class AuthManager {
* Automatically refreshes the token if expired * Automatically refreshes the token if expired
*/ */
async getCredentials(): Promise<AuthCredentials | null> { async getCredentials(): Promise<AuthCredentials | null> {
const credentials = this.credentialStore.getCredentials({ allowExpired: true }); const credentials = this.credentialStore.getCredentials({
allowExpired: true
});
if (!credentials) { if (!credentials) {
return null; return null;