We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e9edf commit ca25c65Copy full SHA for ca25c65
1 file changed
src/features/providers/ProvidersWorkbenchPage.tsx
@@ -43,12 +43,6 @@ interface ProvidersWorkbenchPageProps {
43
fixedBrand?: ProviderBrand;
44
}
45
46
-const HIDDEN_GENERAL_PROVIDER_BRANDS = new Set<ProviderBrand>([
47
- 'apikeyFun',
48
- 'code0',
49
- 'claudeApi',
50
-]);
51
-
52
const formatDateTime = (iso: string, locale?: string) => {
53
try {
54
const date = new Date(iso);
@@ -158,7 +152,7 @@ export function ProvidersWorkbenchPage({ fixedBrand }: ProvidersWorkbenchPagePro
158
152
() =>
159
153
fixedBrand
160
154
? allGroups.filter((group) => group.id === fixedBrand)
161
- : allGroups.filter((group) => !HIDDEN_GENERAL_PROVIDER_BRANDS.has(group.id)),
155
+ : allGroups.filter((group) => group.id !== 'apikeyFun'),
162
156
[allGroups, fixedBrand]
163
157
);
164
const firstVisibleBrand = groups[0]?.id ?? fixedBrand ?? 'gemini';
0 commit comments