diff --git a/frontend/src/components/account/AccountQuotaInfo.vue b/frontend/src/components/account/AccountQuotaInfo.vue index b639a7e2..4bc91be3 100644 --- a/frontend/src/components/account/AccountQuotaInfo.vue +++ b/frontend/src/components/account/AccountQuotaInfo.vue @@ -90,8 +90,8 @@ const tierLabel = computed(() => { return tierMap[creds?.tier_id || ''] || 'Personal' } - // AI Studio 或其他 - return 'Gemini' + // API Key: 显示 Client + return 'Client' }) // Tier Badge 样式 diff --git a/frontend/src/components/account/AccountUsageCell.vue b/frontend/src/components/account/AccountUsageCell.vue index 9b89fefc..1ce0f708 100644 --- a/frontend/src/components/account/AccountUsageCell.vue +++ b/frontend/src/components/account/AccountUsageCell.vue @@ -245,20 +245,18 @@
@@ -587,7 +585,7 @@ const geminiAuthTypeLabel = computed(() => {
if (props.account.type !== 'oauth') return null
if (oauthType === 'google_one') {
- // Google One: show "G1" + tier
+ // Google One: show "Google One" + tier
const tierMap: Record