Skip to content

Commit

Permalink
Merge pull request #77 from DuendeSoftware/joe/sample-fix
Browse files Browse the repository at this point in the history
Blazor sample fix
  • Loading branch information
josephdecock authored Dec 17, 2024
2 parents 473cf2c + 6faabb7 commit 07b1117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace BlazorServer.Plumbing;
/// </summary>
public class ServerSideTokenStore : IUserTokenStore
{
private readonly ConcurrentDictionary<string, UserToken> _tokens = new();
private static readonly ConcurrentDictionary<string, UserToken> _tokens = new();

public Task<UserToken> GetTokenAsync(ClaimsPrincipal user, UserTokenRequestParameters? parameters = null)
{
Expand Down

0 comments on commit 07b1117

Please sign in to comment.