Revert "feat: show connected providers in /connect dialog (#8351)"

This reverts commit a57c8669b6.
This commit is contained in:
Dax Raad
2026-02-09 23:46:57 -05:00
parent 56a752092e
commit 12262862cd

View File

@@ -26,14 +26,11 @@ export function createDialogProviderOptions() {
const sync = useSync()
const dialog = useDialog()
const sdk = useSDK()
const connected = createMemo(() => new Set(sync.data.provider_next.connected))
const options = createMemo(() => {
return pipe(
sync.data.provider_next.all,
sortBy((x) => PROVIDER_PRIORITY[x.id] ?? 99),
map((provider) => {
const isConnected = connected().has(provider.id)
return {
map((provider) => ({
title: provider.name,
value: provider.id,
description: {
@@ -42,7 +39,6 @@ export function createDialogProviderOptions() {
openai: "(ChatGPT Plus/Pro or API key)",
}[provider.id],
category: provider.id in PROVIDER_PRIORITY ? "Popular" : "Other",
footer: isConnected ? "Connected" : undefined,
async onSelect() {
const methods = sync.data.provider_auth[provider.id] ?? [
{
@@ -77,22 +73,12 @@ export function createDialogProviderOptions() {
})
if (result.data?.method === "code") {
dialog.replace(() => (
<CodeMethod
providerID={provider.id}
title={method.label}
index={index}
authorization={result.data!}
/>
<CodeMethod providerID={provider.id} title={method.label} index={index} authorization={result.data!} />
))
}
if (result.data?.method === "auto") {
dialog.replace(() => (
<AutoMethod
providerID={provider.id}
title={method.label}
index={index}
authorization={result.data!}
/>
<AutoMethod providerID={provider.id} title={method.label} index={index} authorization={result.data!} />
))
}
}
@@ -100,8 +86,7 @@ export function createDialogProviderOptions() {
return dialog.replace(() => <ApiMethod providerID={provider.id} title={method.label} />)
}
},
}
}),
})),
)
})
return options