fix(api): update PlaidClientOptions to set environment to Production

This commit is contained in:
Stevan Freeborn
2026-03-11 19:46:47 -05:00
parent e6f70f4ab4
commit e3acb2166d
@@ -36,7 +36,7 @@ public static class ServiceCollectionExtensions
if (sp.GetRequiredService<IWebHostEnvironment>().IsProduction())
{
options.Value.Environment = Going.Plaid.Environment.Development;
options.Value.Environment = Going.Plaid.Environment.Production;
}
return new PlaidClient(options, factory, logger);