fix(providers): hide anthropic browser auth (#1395)

This commit is contained in:
Jan Carbonell
2026-04-08 10:18:03 -07:00
committed by GitHub
parent 4a787dd0b2
commit da5d972a54
4 changed files with 1 additions and 1 deletions

View File

@@ -100,7 +100,7 @@ export default function ProviderAuthModal(props: ProviderAuthModalProps) {
const isClaudeProMaxMethod = (method: ProviderAuthMethod) => {
const label = method.label.toLowerCase();
return method.type === "oauth" && label.includes("pro/max");
return method.type === "oauth" && (label.includes("pro/max") || label.includes("create an api key"));
};
const entries = createMemo<ProviderAuthEntry[]>(() => {

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB