diff --git a/bff/templates/src/BffBlazorAutoRenderMode/BffBlazorAutoRenderMode/Program.cs b/bff/templates/src/BffBlazorAutoRenderMode/BffBlazorAutoRenderMode/Program.cs index 9c544a3e6..7978f5b04 100644 --- a/bff/templates/src/BffBlazorAutoRenderMode/BffBlazorAutoRenderMode/Program.cs +++ b/bff/templates/src/BffBlazorAutoRenderMode/BffBlazorAutoRenderMode/Program.cs @@ -63,7 +63,7 @@ builder.Services.AddCascadingAuthenticationState(); builder.Services.AddAuthorization(); -// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls +// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls // See more at https://docs.duendesoftware.com/general/data-protection _ = builder.Services.AddDataProtection() .SetApplicationName("BFF"); diff --git a/bff/templates/src/BffLocalApi/HostingExtensions.cs b/bff/templates/src/BffLocalApi/HostingExtensions.cs index 7a0c6f54c..1820e9b6a 100644 --- a/bff/templates/src/BffLocalApi/HostingExtensions.cs +++ b/bff/templates/src/BffLocalApi/HostingExtensions.cs @@ -50,7 +50,7 @@ internal static class HostingExtensions options.TokenValidationParameters.RoleClaimType = "role"; }); - // Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls + // Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls // See more at https://docs.duendesoftware.com/general/data-protection _ = builder.Services.AddDataProtection() .SetApplicationName("BFF"); diff --git a/bff/templates/src/BffRemoteApi/Program.cs b/bff/templates/src/BffRemoteApi/Program.cs index 19769d0b0..0b6b949f9 100644 --- a/bff/templates/src/BffRemoteApi/Program.cs +++ b/bff/templates/src/BffRemoteApi/Program.cs @@ -47,7 +47,7 @@ builder.Services.AddAuthentication(options => }; }); -// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls +// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls // See more at https://docs.duendesoftware.com/general/data-protection _ = builder.Services.AddDataProtection() .SetApplicationName("BFF");