fix: show all provider models when no providers connected (#11198)

This commit is contained in:
Dax
2026-01-29 16:19:50 -05:00
committed by GitHub
parent f02ff79bc8
commit a7b8bbe303
@@ -158,7 +158,7 @@ export function DialogModel(props: { providerID?: string }) {
(item) => item.providerID === value.providerID && item.modelID === value.modelID,
)
if (inFavorites) return false
const inRecents = recentList.some(
const inRecents = recents.some(
(item) => item.providerID === value.providerID && item.modelID === value.modelID,
)
if (inRecents) return false