🎨 Reformat code for consistent indentation and improve readability

This commit is contained in:
2026-01-28 18:30:53 +00:00
parent 36caa456fb
commit c723496e69

View File

@@ -54,7 +54,10 @@ try {
tokenData.value = JSON.parse(storedToken);
// Check if token is expired
if (tokenData.value.expires_at && Date.now() >= tokenData.value.expires_at) {
if (
tokenData.value.expires_at &&
Date.now() >= tokenData.value.expires_at
) {
console.log('🔄 Client credentials token expired, will need to refresh');
}
}