Typo on CurrentCount upper/lower case (#22492)

pull/22495/head
dani herrera 2021-06-03 22:31:39 +02:00 committed by GitHub
parent 7b6e8f5cfb
commit b0fa97b12f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ else
protected override async Task OnInitializedAsync()
{
var result = await ProtectedSessionStore.GetAsync<int>("count");
currentCount = result.Success ? result.Value : 0;
CurrentCount = result.Success ? result.Value : 0;
isLoaded = true;
}