From d8f630389c6c52eb9785da3dd02fb894a62374fd Mon Sep 17 00:00:00 2001 From: Mahmut Gundogdu Date: Thu, 8 Dec 2022 16:47:44 +0300 Subject: [PATCH] Update Getting-Started-React-Native.md --- docs/en/Getting-Started-React-Native.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/Getting-Started-React-Native.md b/docs/en/Getting-Started-React-Native.md index 7c882525ca..be2e3004e2 100644 --- a/docs/en/Getting-Started-React-Native.md +++ b/docs/en/Getting-Started-React-Native.md @@ -80,11 +80,11 @@ Run the backend application as described in the [getting started document](Getti Go to MyProjectNameHttpApiHostModule.cs under the host project. Add these codes under `PreConfigureServices` function. ```csharp -#ifDEBUG -PreConfigure(options => { -options.UseAspNetCore() -.DisableTransportSecurityRequirement(); -}); +#if DEBUG + PreConfigure(options => { + options.UseAspNetCore() + .DisableTransportSecurityRequirement(); + }); #endif ```