allow setting options in global provider store

This commit is contained in:
Dax Raad
2025-06-18 11:06:16 -04:00
parent b8bbee4718
commit ebe51534a1
2 changed files with 4 additions and 3 deletions

View File

@@ -203,9 +203,7 @@ export namespace Provider {
}
// load config
for (const [providerID, provider] of Object.entries(
config.provider ?? {},
)) {
for (const [providerID, provider] of configProviders) {
mergeProvider(providerID, provider.options ?? {}, "config")
}