From d16a5020cb1f56326ce861c70238576c6d46081b Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 5 Jun 2026 10:26:50 +0200 Subject: [PATCH] Update ForceToUseFakeDocument to false in appsettings.json The `ForceToUseFakeDocument` property in the `Api` section of `appsettings.json` was changed from `true` to `false`. This modification alters the application's behavior to no longer force the use of fake documents, potentially enabling the use of real documents or other configurations as defined by the application logic. --- EnvelopeGenerator.ReceiverUI/wwwroot/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.ReceiverUI/wwwroot/appsettings.json b/EnvelopeGenerator.ReceiverUI/wwwroot/appsettings.json index 54ab39a7..fc7e14ce 100644 --- a/EnvelopeGenerator.ReceiverUI/wwwroot/appsettings.json +++ b/EnvelopeGenerator.ReceiverUI/wwwroot/appsettings.json @@ -1,6 +1,6 @@ { "Api": { "BaseUrl": "", - "ForceToUseFakeDocument": true + "ForceToUseFakeDocument": false } }