diff --git a/apps/codex-plus-manager/src/App.tsx b/apps/codex-plus-manager/src/App.tsx index d5dafecb2..2a7aadfaa 100644 --- a/apps/codex-plus-manager/src/App.tsx +++ b/apps/codex-plus-manager/src/App.tsx @@ -268,6 +268,7 @@ export type RelayProfile = { protocol: RelayProtocol; relayMode: RelayMode; officialMixApiKey: boolean; + hideOfficialUsageAlert: boolean; testModel: string; configContents: string; authContents: string; @@ -854,6 +855,7 @@ const defaultSettings: BackendSettings = { protocol: "responses", relayMode: "official", officialMixApiKey: false, + hideOfficialUsageAlert: false, testModel: "", configContents: "", authContents: "", @@ -6228,6 +6230,21 @@ function RelayProfileEditor({

{t("当前继承公共配置;修改后将为该供应商保存独立设置。")}

) : null} + {profile.relayMode === "official" ? ( + + +

+ {t("关闭后仍可从 Codex 左下角账户菜单查看官方剩余额度。")} +

+
+ ) : null}