fix(frontend): resolve lint blockers for gitea frontend-ci

This commit is contained in:
WorkClub Automation
2026-03-06 22:26:55 +01:00
parent ad6a23621d
commit 5cf43976f6
16 changed files with 112 additions and 96 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ export const { handlers, signIn, signOut, auth } = NextAuth({
async jwt({ token, account }) {
if (account) {
// Add clubs claim from Keycloak access token
token.clubs = (account as any).clubs || {}
token.clubs = (account as Record<string, unknown>).clubs as Record<string, string> || {}
token.accessToken = account.access_token
}
return token