Merge pull request #683 from thecodacus/setting-default-value

fix: added default value to true for provider setting in initial
This commit is contained in:
Anirban Kar 2024-12-13 11:21:48 +05:30 committed by GitHub
commit 4b36601061
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ PROVIDER_LIST.forEach((provider) => {
initialProviderSettings[provider.name] = {
...provider,
settings: {
enabled: false,
enabled: true,
},
};
});