From e3acb2166da84d5c69b0200883dce3d8b53e0e58 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Wed, 11 Mar 2026 19:46:47 -0500 Subject: [PATCH] fix(api): update PlaidClientOptions to set environment to Production --- .../DependencyInjection/ServiceCollectionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FiscalOS.Infra/DependencyInjection/ServiceCollectionExtensions.cs b/src/FiscalOS.Infra/DependencyInjection/ServiceCollectionExtensions.cs index 2b9a936..30f50ee 100644 --- a/src/FiscalOS.Infra/DependencyInjection/ServiceCollectionExtensions.cs +++ b/src/FiscalOS.Infra/DependencyInjection/ServiceCollectionExtensions.cs @@ -36,7 +36,7 @@ public static class ServiceCollectionExtensions if (sp.GetRequiredService().IsProduction()) { - options.Value.Environment = Going.Plaid.Environment.Development; + options.Value.Environment = Going.Plaid.Environment.Production; } return new PlaidClient(options, factory, logger);