Skip to content

Commit 12c8b47

Browse files
committed
Fixed typo
1 parent cb3585e commit 12c8b47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Client.UI/ViewModels/User/UserListViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public UserListViewModel()
3131
ReloadFriendRequests();
3232
ReloadBlockedUsers();
3333

34-
AddFriendCmd = new (async (o) => await HandlerUser(o as string, UserRelationAction.AddFriend));
35-
BlockUserCmd = new (async (o) => await HandlerUser(o as string, UserRelationAction.BlockUser));
34+
AddFriendCmd = new (async (o) => await HandleUser(o as string, UserRelationAction.AddFriend));
35+
BlockUserCmd = new (async (o) => await HandleUser(o as string, UserRelationAction.BlockUser));
3636
}
3737

3838
public void Dispose()
@@ -93,7 +93,7 @@ private void ReloadBlockedUsers()
9393
});
9494
}
9595

96-
private static Task HandlerUser(string name, UserRelationAction action)
96+
private static Task HandleUser(string name, UserRelationAction action)
9797
{
9898
if (string.IsNullOrEmpty(name))
9999
return Task.CompletedTask;

0 commit comments

Comments
 (0)