test: update recurrence expansion test + fix TS/Lint errors

This commit is contained in:
Bernd Rodler
2026-08-07 12:37:16 +02:00
parent a622e3755b
commit 7e3034da8d
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ export async function exchangeCodeForTokens(
const tokens = await tokenResponse.json();
if (!tokens.access_token) {
const { access_token, refresh_token, ...safeTokens } = tokens;
const { access_token: _at, refresh_token: _rt, ...safeTokens } = tokens;
logger.error('Token response missing access_token', { response: JSON.stringify(safeTokens).substring(0, 500) });
throw new Error('Invalid token response');
}