fix(frontend): wrong usage, tooltips, ...

This commit is contained in:
Alois 2026-08-30 11:58:15 +02:00
commit 3db5ec25c2
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
2 changed files with 59 additions and 43 deletions

View file

@ -317,8 +317,13 @@ func (h *Handler) RequestCodexToken(c *gin.Context) {
FileName: fileName,
Storage: tokenStorage,
Metadata: map[string]any{
"email": tokenStorage.Email,
"account_id": tokenStorage.AccountID,
"email": tokenStorage.Email,
"account_id": tokenStorage.AccountID,
"access_token": tokenStorage.AccessToken,
"refresh_token": tokenStorage.RefreshToken,
"id_token": tokenStorage.IDToken,
"expired": tokenStorage.Expire,
"last_refresh": tokenStorage.LastRefresh,
},
}
if errGuard := guardOAuthSessionPendingForSave(state, "codex"); errGuard != nil {