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 ```