From 9f8c745f8c9c28904346fcbba92c3fc6e2adeaff Mon Sep 17 00:00:00 2001 From: Jason Date: Fri, 19 Sep 2025 09:19:53 +0800 Subject: [PATCH] fix: hide 'Apply to VS Code' button for official Codex providers Official Codex providers don't need VS Code integration since they use the default API endpoint --- src/components/ProviderList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProviderList.tsx b/src/components/ProviderList.tsx index 32c5f4e..569648d 100644 --- a/src/components/ProviderList.tsx +++ b/src/components/ProviderList.tsx @@ -235,7 +235,7 @@ const ProviderList: React.FC = ({
- {appType === "codex" && isCurrent && ( + {appType === "codex" && isCurrent && provider.category !== "official" && (