Fixed a typo in comments added to BFF templates

This commit is contained in:
AL Rodriguez 2026-04-01 15:07:12 -04:00
parent f67516c1f8
commit c33705a1e2
3 changed files with 3 additions and 3 deletions

View file

@ -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");

View file

@ -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");

View file

@ -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");